summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 02f77e8d73b7c00e9abc5fc0e8ef388ff329bdbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.stages:
  - build
  - test
  - deploy

BuildAppImage:
  image: ubuntu:trusty
  before_script:
    - apt-get update -qq
    - chmod +x install_dependencies.sh
    - ./install_dependencies.sh
  tags:
    - docker

  script:
    - ls
    - cd /builds/mana-launcher/mplusbuilder
    - chmod +x build.sh
    - chmod +x linuxdeploy-x86_64.AppImage
    - ./linuxdeploy-x86_64.AppImage --appimage-extract
    - ./build.sh
    - cd
    - find / -type f -name "*.AppImage"

  artifacts:
    paths:
      - "ManaPlus-x86_64.AppImage"