summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a64bd4e..286c3a0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -286,3 +286,25 @@ zlib_v1.2.11:
variables:
installname: zlib_v1.2.11
<<: *job-artifacts
+
+zlib_master:
+ stage: build
+ script:
+ - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
+ - ./.ci/copyspm.sh
+ - ./.ci/buildlib.sh zlib master
+ - ./.ci/copyfinal.sh
+ variables:
+ installname: zlib_master
+ <<: *job-artifacts
+
+zlib_develop:
+ stage: build
+ script:
+ - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
+ - ./.ci/copyspm.sh
+ - ./.ci/buildlib.sh zlib develop
+ - ./.ci/copyfinal.sh
+ variables:
+ installname: zlib_develop
+ <<: *job-artifacts