gitlab-ci: Enable fedora29 and update generated dists
[samba.git] / .gitlab-ci.yml
1 # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
2
3 stages:
4   - images
5   - build
6
7 variables:
8   GIT_STRATEGY: fetch
9   GIT_DEPTH: "3"
10   #
11   # we run autobuild.py inside a samba CI docker image located on gitlab's registry
12   # overwrite this variable if you want use your own image registry.
13   #
14   # Or better ask for access to the shared development repository, see
15   # https://wiki.samba.org/index.php/Samba_CI_on_gitlab#Getting_Access
16   #
17   SAMBA_CI_CONTAINER_REGISTRY: registry.gitlab.com/samba-team/devel/samba
18   #
19   # Set this to the contents of bootstrap/sha1sum.txt
20   # which is generated by bootstrap/template.py --render
21   #
22   SAMBA_CI_CONTAINER_TAG: 735b9b509e6928bc71fe4442798e4fe110a98788
23   #
24   # The following images are available
25   # Please see the samba-o3 sections at the end of this file!
26   # We should run that for each available image
27   #
28   SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1804:${SAMBA_CI_CONTAINER_TAG}
29   SAMBA_CI_CONTAINER_IMAGE_ubuntu1604: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
30   SAMBA_CI_CONTAINER_IMAGE_ubuntu1404: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1404:${SAMBA_CI_CONTAINER_TAG}
31   SAMBA_CI_CONTAINER_IMAGE_debian9: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-debian9:${SAMBA_CI_CONTAINER_TAG}
32   SAMBA_CI_CONTAINER_IMAGE_opensuse150: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse150:${SAMBA_CI_CONTAINER_TAG}
33   SAMBA_CI_CONTAINER_IMAGE_fedora29: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora29:${SAMBA_CI_CONTAINER_TAG}
34
35 include:
36   # The image creation details are specified in a separate file
37   # See bootstrap/README.md for details
38   - 'bootstrap/.gitlab-ci.yml'
39
40 .shared_template:
41   variables:
42     AUTOBUILD_JOB_NAME: $CI_JOB_NAME
43   # We use the ubuntu1804 image as default as
44   # it matches what we have on sn-devel-184.
45   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
46   stage: build
47   tags:
48     - docker
49     - shared
50   before_script:
51     - uname -a
52     - lsb_release -a
53     - cat /etc/os-release
54     - mount
55     - df -h
56     - cat /proc/swaps
57     - free -h
58       # See bootstrap/.gitlab-ci.yml how to generate a new image
59     - echo "SAMBA_CI_CONTAINER_REGISTRY[${SAMBA_CI_CONTAINER_REGISTRY}]"
60     - echo "SAMBA_CI_CONTAINER_TAG[${SAMBA_CI_CONTAINER_TAG}]"
61     - bootstrap/template.py --sha1sum > /tmp/sha1sum-template.txt
62     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-template.txt
63     - echo "${SAMBA_CI_CONTAINER_TAG}" > /tmp/sha1sum-tag.txt
64     - diff -u bootstrap/sha1sum.txt /tmp/sha1sum-tag.txt
65     - diff -u bootstrap/sha1sum.txt /sha1sum.txt
66   after_script:
67     - mount
68     - df -h
69     - cat /proc/swaps
70     - free -h
71   artifacts:
72     expire_in: 1 week
73     when: on_failure
74     paths:
75       - "*.stdout"
76       - "*.stderr"
77       - system-info.txt
78       - /tmp/samba-testbase/*/*/bin/config.log
79   retry:
80     max: 2
81     when:
82       - runner_system_failure
83       - stuck_or_timeout_failure
84   script:
85     # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
86     # autobuild name, which means we can define a default template that runs most autobuild jobs
87     - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
88     - script/autobuild.py $AUTOBUILD_JOB_NAME    --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
89
90 others:
91   extends: .shared_template
92   script:
93     - script/autobuild.py ldb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
94     - script/autobuild.py pidl             --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
95     - script/autobuild.py replace          --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
96     - script/autobuild.py talloc           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
97     - script/autobuild.py tdb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
98     - script/autobuild.py tevent           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
99
100 samba:
101   extends: .shared_template
102
103 samba-none-env:
104   extends: .shared_template
105
106 samba-nopython:
107   extends: .shared_template
108
109 samba-nopython-py2:
110   extends: .shared_template
111
112 samba-systemkrb5:
113   extends: .shared_template
114
115 samba-xc:
116   extends: .shared_template
117
118 samba-ad-member:
119   extends: .shared_template
120
121 samba-ad-dc-2:
122   extends: .shared_template
123
124 samba-ad-dc-3:
125   extends: .shared_template
126
127 samba-ad-dc-4:
128   extends: .shared_template
129
130 samba-ad-dc-5:
131   extends: .shared_template
132
133 samba-ad-dc-6:
134   extends: .shared_template
135
136 samba-ad-dc-backup:
137   extends: .shared_template
138
139 samba-libs:
140   extends: .shared_template
141
142 samba-static:
143   extends: .shared_template
144
145 ctdb:
146   extends: .shared_template
147
148 samba-ctdb:
149   extends: .shared_template
150
151 samba-ad-dc-ntvfs:
152   extends: .shared_template
153
154 .private_template:
155   extends: .shared_template
156   tags:
157     - docker
158     - private
159     - samba-ci-private
160   only:
161     variables:
162       # These jobs are only run if the gitlab repo has private runners available.
163       # To enable private jobs, you must add the following var and value to
164       # your gitlab repo by navigating to:
165       # settings -> CI/CD -> Environment variables
166       - $SUPPORT_PRIVATE_TEST == "yes"
167
168 samba-fileserver:
169   extends: .private_template
170
171 samba-ad-dc-1:
172   extends: .private_template
173
174 samba-nt4:
175   extends: .private_template
176
177 samba-schemaupgrade:
178   extends: .private_template
179
180 #
181 # We build samba-o3 on all supported distributions
182 #
183
184 .samba-o3-template:
185   extends: .shared_template
186   variables:
187     AUTOBUILD_JOB_NAME: samba-o3
188
189 ubuntu1804-samba-o3:
190   extends: .samba-o3-template
191   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
192
193 ubuntu1604-samba-o3:
194   extends: .samba-o3-template
195   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1604
196
197 ubuntu1404-samba-o3:
198   extends: .samba-o3-template
199   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1404
200
201 debian9-samba-o3:
202   extends: .samba-o3-template
203   image: $SAMBA_CI_CONTAINER_IMAGE_debian9
204
205 opensuse150-samba-o3:
206   extends: .samba-o3-template
207   image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
208
209 fedora29-samba-o3:
210   extends: .samba-o3-template
211   image: $SAMBA_CI_CONTAINER_IMAGE_fedora29
212
213 #
214 # Keep the samba-o3 sections at the end ...
215 #