summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 3f88db3845876bb6195c8eeca0dc7b982bdd26f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BuildAppImage:
  image: ubuntu:trusty
  script:
    - mkdir ~/build
    - apt-get update -qq && apt install -y libfuse2 g++ gcc xsel wget make autoconf automake autopoint gettext libxml2-dev libcurl4-gnutls-dev libpng-dev libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev gdb valgrind netcat-openbsd procps
    - cd /builds/mana-launcher/mplusbuilder
    - chmod +x build.sh
    - chmod +x linuxdeploy-x86_64.AppImage
    - ./build.sh
    - cd
    - find / -type f -name "*.AppImage"

  artifacts:
    paths:
      - "/root/build/ManaPlus-x86_64.AppImage"