summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: c844d6f0dba6de940c5a76d3f2d3b2d2ff0bdcad (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




          

                      



                                      

            
 
         

                                       

                                          
                                                      
                
                                                             
        
                                       
 

            

                                  
.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 /builds/
    - cd /builds/jak89_1/appimg-builder
    - chmod +x build.sh
    - chmod +x linuxdeploy-x86_64.AppImage
    - ./linuxdeploy-x86_64.AppImage --appimage-extract
    - ./build.sh
    - sha256sum ManaPlus-x86_64.AppImage > sha256checksum.txt
    - cd
    - find / -type f -name "*.AppImage"

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