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

        
         



              

                      



                              
         
                
                       
 
              

             
                                                                                   
                                 




                                
                                
                                    






                                                                                   
                    
stages:
  - test
  - build

before_script:
  - uname -a

image: debian:unstable

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

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

zlib_v1.2.11:
  stage: build
  script:
  - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
  - ./.ci/buildlib.sh zlib v1.2.11
  <<: *job-artifacts