summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 24ca6d990b02c31c17673c111447002c76855b1b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                              
                                  


                                 
stages:
  - test

before_script:
  - uname -a

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

test:getsrc:
  stage: test
  script:
  - ./.ci/install.sh git-core bash
  - ./.ci/run.sh ./getsrc.sh zlib
  image: debian:unstable
  <<: *job-artifacts