blob: 5f264c89d4a8be4d437b2cc6d438da7027ee64b1 (
plain) (
tree)
|
|
stages:
- test
- build
before_script:
- uname -a
image: debian:unstable
variables:
GET_SOURCES_ATTEMPTS: "5"
ARTIFACT_DOWNLOAD_ATTEMPTS: "5"
.job-artifacts: &job-artifacts
artifacts:
paths:
- logs
- bin
when: always
expire_in: 3 months
# self tests
test:commands:
stage: test
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/run.sh ./getsrc.sh zlib
- ls src/zlib
- ./.ci/run.sh ./build.sh zlib
- ls bin/zlib
- ./.ci/run.sh ./clean.sh zlib
- mkdir bin/zlib
- ./.ci/run.sh ./clean.sh zlib
- ./.ci/run.sh ./updatesrc.sh zlib
<<: *job-artifacts
# zlib builds
zlib_v1.2.6:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.6
<<: *job-artifacts
zlib_v1.2.6.1:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.6.1
<<: *job-artifacts
zlib_v1.2.7:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.7
<<: *job-artifacts
zlib_v1.2.7.1:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.7.1
<<: *job-artifacts
zlib_v1.2.7.3:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.7.3
<<: *job-artifacts
zlib_v1.2.8:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.8
<<: *job-artifacts
zlib_v1.2.9:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.9
<<: *job-artifacts
zlib_v1.2.10:
stage: build
script:
- ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext
- ./.ci/buildlib.sh zlib v1.2.10
<<: *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
|