diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-03 18:00:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-03 18:00:53 +0300 |
commit | b6f5c1f11d3b5f75972a51d58f8f34f1524173df (patch) | |
tree | eb0594d4272cf5094d0fac4855700265a1d04616 | |
parent | 26975d2dfddb075681c134f8eb7be8edd4e76abe (diff) | |
download | spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.gz spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.bz2 spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.tar.xz spm-b6f5c1f11d3b5f75972a51d58f8f34f1524173df.zip |
Add zlib builds for master and develop branches.
-rw-r--r-- | .gitlab-ci.yml | 22 |
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 |