blob: dd135da06bf2b6ca12ee0b95e39acca728eb2a97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
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.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
|