selftest: correcting empty attribute usage in requests
[gd/samba-autobuild/.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: 2be76362af215af6842e884abd5246dd9b50c283
23   # We use the ubuntu1804 image as default as
24   # it matches what we have on sn-devel-184.
25   SAMBA_CI_CONTAINER_IMAGE: ubuntu1804
26   #
27   # The following images are available
28   # Please see the samba-o3 sections at the end of this file!
29   # We should run that for each available image
30   #
31   SAMBA_CI_CONTAINER_IMAGE_ubuntu1804: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1804:${SAMBA_CI_CONTAINER_TAG}
32   SAMBA_CI_CONTAINER_IMAGE_ubuntu1604: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-ubuntu1604:${SAMBA_CI_CONTAINER_TAG}
33   SAMBA_CI_CONTAINER_IMAGE_debian9: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-debian9:${SAMBA_CI_CONTAINER_TAG}
34   SAMBA_CI_CONTAINER_IMAGE_opensuse150: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-opensuse150:${SAMBA_CI_CONTAINER_TAG}
35   SAMBA_CI_CONTAINER_IMAGE_fedora29: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-fedora29:${SAMBA_CI_CONTAINER_TAG}
36
37 include:
38   # The image creation details are specified in a separate file
39   # See bootstrap/README.md for details
40   - 'bootstrap/.gitlab-ci.yml'
41
42 .shared_template:
43   variables:
44     AUTOBUILD_JOB_NAME: $CI_JOB_NAME
45   image: ${SAMBA_CI_CONTAINER_REGISTRY}/samba-ci-${SAMBA_CI_CONTAINER_IMAGE}:${SAMBA_CI_CONTAINER_TAG}
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   retry:
79     max: 2
80     when:
81       - runner_system_failure
82       - stuck_or_timeout_failure
83   script:
84     # gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
85     # autobuild name, which means we can define a default template that runs most autobuild jobs
86     - echo "Running cmd script/autobuild.py $AUTOBUILD_JOB_NAME --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase"
87     - script/autobuild.py $AUTOBUILD_JOB_NAME    --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
88
89 others:
90   extends: .shared_template
91   script:
92     - script/autobuild.py ldb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
93     - script/autobuild.py pidl             --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
94     - script/autobuild.py replace          --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
95     - script/autobuild.py talloc           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
96     - script/autobuild.py tdb              --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
97     - script/autobuild.py tevent           --verbose --nocleanup --keeplogs --tail --testbase /tmp/samba-testbase
98
99 samba:
100   extends: .shared_template
101
102 samba-none-env:
103   extends: .shared_template
104
105 samba-nopython:
106   extends: .shared_template
107
108 samba-nopython-py2:
109   extends: .shared_template
110
111 samba-systemkrb5:
112   extends: .shared_template
113
114 samba-xc:
115   extends: .shared_template
116
117 samba-ad-member:
118   extends: .shared_template
119
120 samba-ad-dc-2:
121   extends: .shared_template
122
123 samba-ad-dc-3:
124   extends: .shared_template
125
126 samba-ad-dc-4:
127   extends: .shared_template
128
129 samba-ad-dc-5:
130   extends: .shared_template
131
132 samba-ad-dc-6:
133   extends: .shared_template
134
135 samba-ad-dc-backup:
136   extends: .shared_template
137
138 samba-libs:
139   extends: .shared_template
140
141 samba-static:
142   extends: .shared_template
143
144 ctdb:
145   extends: .shared_template
146
147 samba-ctdb:
148   extends: .shared_template
149
150 samba-ad-dc-ntvfs:
151   extends: .shared_template
152
153 .private_template:
154   extends: .shared_template
155   tags:
156     - docker
157     - samba-ci-private
158   only:
159     variables:
160       # These jobs are only run if the gitlab repo has private runners available.
161       # To enable private jobs, you must add the following var and value to
162       # your gitlab repo by navigating to:
163       # settings -> CI/CD -> Environment variables
164       - $SUPPORT_PRIVATE_TEST == "yes"
165
166 samba-fileserver:
167   extends: .private_template
168
169 samba-ad-dc-1:
170   extends: .private_template
171
172 samba-nt4:
173   extends: .private_template
174
175 samba-schemaupgrade:
176   extends: .private_template
177
178 #
179 # We build samba-o3 on all supported distributions
180 #
181
182 .samba-o3-template:
183   extends: .shared_template
184   variables:
185     AUTOBUILD_JOB_NAME: samba-o3
186
187 ubuntu1804-samba-o3:
188   extends: .samba-o3-template
189   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1804
190
191 ubuntu1604-samba-o3:
192   extends: .samba-o3-template
193   image: $SAMBA_CI_CONTAINER_IMAGE_ubuntu1604
194
195 debian9-samba-o3:
196   extends: .samba-o3-template
197   image: $SAMBA_CI_CONTAINER_IMAGE_debian9
198
199 opensuse150-samba-o3:
200   extends: .samba-o3-template
201   image: $SAMBA_CI_CONTAINER_IMAGE_opensuse150
202
203 fedora29-samba-o3:
204   extends: .samba-o3-template
205   image: $SAMBA_CI_CONTAINER_IMAGE_fedora29
206
207 #
208 # Keep the samba-o3 sections at the end ...
209 #