summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 13 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e6b9cf6..ec0e3d9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,15 +1,19 @@
stages:
- test
+ - build
before_script:
- uname -a
+image: debian:unstable
+
.job-artifacts: &job-artifacts
artifacts:
paths:
- logs
+ - bin
when: always
- expire_in: 3 week
+ expire_in: 3 months
test:commands:
stage: test
@@ -21,6 +25,13 @@ test:commands:
- ls bin/zlib
- ./.ci/run.sh ./clean.sh zlib
- mkdir bin/zlib
+ - ./.ci/run.sh ./clean.sh zlib
- ./.ci/run.sh ./updatesrc.sh zlib
- image: debian:unstable
+ <<: *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