summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-03 18:00:53 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-03 18:00:53 +0300
commitb6f5c1f11d3b5f75972a51d58f8f34f1524173df (patch)
treeeb0594d4272cf5094d0fac4855700265a1d04616 /.gitlab-ci.yml
parent26975d2dfddb075681c134f8eb7be8edd4e76abe (diff)
downloadspm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.gz
spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.bz2
spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.xz
spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.zip
Add zlib builds for master and develop branches.
Diffstat (limited to '.gitlab-ci.yml')
-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