summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 57148cc75a3e7b2f0a58762fe62626dff733b013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/run.sh ./getsrc.sh zlib
  image: debian:unstable
  <<: *job-artifacts