summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 67a53fffd585837ff0cc3a9c567b0c6c16653c7e (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:commands:
  stage: test
  script:
  - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
  - ./.ci/run.sh ./getsrc.sh zlib
  - ls src/zlib
  - ./.ci/run.sh ./build.sh zlib
  - ls bin/zlib
  - ./.ci/run.sh ./clean.sh zlib
  - mkdir bin/zlib
  - ./.ci/run.sh ./clean.sh zlib
  - ./.ci/run.sh ./updatesrc.sh zlib
  <<: *job-artifacts