summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 0be9f07c573fc929f61c458cb4d14362126c4df4 (plain) (tree)
1
2
3
4
5
6
7
8

        
         



              
                      


                                 
 



                              
         
                
                       
 

            
               

             
                                                                                   
                                      


                                
               
                                                  

                                
                                
                                         

                      
                    





                                                                                    
                                      



                                
                                                   


                                
                                         

                          
                    













                                                                                                                   
stages:
  - test
  - build

before_script:
  - uname -a

image: debian:unstable
variables:
  GET_SOURCES_ATTEMPTS: "5"
  ARTIFACT_DOWNLOAD_ATTEMPTS: "5"

.job-artifacts: &job-artifacts
  artifacts:
    paths:
    - logs
    - bin
    when: always
    expire_in: 3 months

# self tests

test:commands1:
  stage: test
  script:
  - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
  - ./.ci/runretry.sh ./getsrc.sh zlib
  - ls src/zlib
  - ./.ci/run.sh ./build.sh zlib
  - ls bin/zlib
  - ls tmp/zlib
  - grep "1.2.10" ./bin/zlib/lib/pkgconfig/zlib.pc
  - ./.ci/run.sh ./clean.sh zlib
  - mkdir bin/zlib
  - ./.ci/run.sh ./clean.sh zlib
  - ./.ci/runretry.sh ./updatesrc.sh zlib
  variables:
    srcbranch: v1.2.10
  <<: *job-artifacts

test:commands2:
  stage: test
  script:
  - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext 
                     zlib1g-dev libtool
  - ./.ci/runretry.sh ./getsrc.sh curl
  - ls src/curl
  - ./.ci/run.sh ./build.sh curl
  - ls bin/curl
  - ls tmp/curl
  - grep "7.51" ./bin/curl/lib/pkgconfig/libcurl.pc
  - ./.ci/run.sh ./clean.sh curl
  - mkdir bin/curl
  - ./.ci/run.sh ./clean.sh curl
  - ./.ci/runretry.sh ./updatesrc.sh curl
  variables:
    srcbranch: curl-7_51_0
  <<: *job-artifacts

manaplus_master:
  stage: build
  script:
  - ./.ci/install.sh gcc g++
                     git-core 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 
  - ./.ci/copyspm.sh
  - ./.ci/buildlib.sh manaplus master
  - ./.ci/copyfinal.sh
  variables:
    installname: manaplus_master
  <<: *job-artifacts