summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: c99a19da3260a91268a0a076a0972506ee5e9914 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
stages:
  - test
  - build

before_script:
  - uname -a
  - ./.ci/install.sh git-core bash gcc g++ make autoconf automake autopoint gettext pkg-config
                     zlib1g-dev libtool libicu-dev

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:commands1:
  stage: test
  script:
  - ./.ci/runretry.sh ./getsrc.sh zlib
  - ls src/zlib
  - ./.ci/run.sh ./build.sh zlib
  - ls bin/zlib
  - ls tmp/zlib
  - grep "1.2.10" ./bin/zlib/lib/pkgconfig/zlib.pc
  - ./.ci/run.sh ./clean.sh zlib
  - mkdir bin/zlib
  - ./.ci/run.sh ./clean.sh zlib
  - ./.ci/runretry.sh ./updatesrc.sh zlib
  variables:
    srcbranch: v1.2.10
  <<: *job-artifacts

test:commands2:
  stage: test
  script:
  - ./.ci/runretry.sh ./getsrc.sh curl
  - ls src/curl
  - ./.ci/run.sh ./build.sh curl
  - ls bin/curl
  - ls tmp/curl
  - grep "7.51" ./bin/curl/lib/pkgconfig/libcurl.pc
  - ./.ci/run.sh ./clean.sh curl
  - mkdir bin/curl
  - ./.ci/run.sh ./clean.sh curl
  - ./.ci/runretry.sh ./updatesrc.sh curl
  variables:
    srcbranch: curl-7_51_0
  <<: *job-artifacts

libxml2_v2.9.4:
  stage: build
  script:
  - ./.ci/copyspm.sh
  - ./.ci/buildlib.sh libxml2 v2.9.4
  - grep "2.9.4" /usr/local/spm/bin/libxml2_v2.9.4/lib/pkgconfig/libxml-2.0.pc
  - ./.ci/copyfinal.sh
  variables:
    installname: libxml2_v2.9.4
  <<: *job-artifacts

libxml2_v2.9.0:
  stage: build
  script:
  - ./.ci/copyspm.sh
  - ./.ci/buildlib.sh libxml2 v2.9.0
  - grep "2.9.0" /usr/local/spm/bin/libxml2_v2.9.0/lib/pkgconfig/libxml-2.0.pc
  - ./.ci/copyfinal.sh
  variables:
    installname: libxml2_v2.9.0
  <<: *job-artifacts

libxml2_v2.8.0:
  stage: build
  script:
  - ./.ci/copyspm.sh
  - ./.ci/buildlib.sh libxml2 v2.8.0
  - grep "2.8.0" /usr/local/spm/bin/libxml2_v2.8.0/lib/pkgconfig/libxml-2.0.pc
  - ./.ci/copyfinal.sh
  variables:
    installname: libxml2_v2.8.0
  <<: *job-artifacts

libxml2_master:
  stage: build
  script:
  - ./.ci/copyspm.sh
  - ./.ci/buildlib.sh libxml2 master
  - grep "2" /usr/local/spm/bin/libxml2_master/lib/pkgconfig/libxml-2.0.pc
  - ./.ci/copyfinal.sh
  variables:
    installname: libxml2_master
  <<: *job-artifacts