]> git.ipfire.org Git - thirdparty/u-boot.git/blob - .gitlab-ci.yml
lib: Allow MD5 to be enabled in SPL
[thirdparty/u-boot.git] / .gitlab-ci.yml
1 # SPDX-License-Identifier: GPL-2.0+
2
3 # Grab our configured image. The source for this is found at:
4 # https://gitlab.denx.de/u-boot/gitlab-ci-runner
5 image: trini/u-boot-gitlab-ci-runner:bionic-20200403-27Apr2020
6
7 # We run some tests in different order, to catch some failures quicker.
8 stages:
9 - testsuites
10 - test.py
11 - world build
12
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
14 tags: [ 'all' ]
15 stage: test.py
16 before_script:
17 # Clone uboot-test-hooks
18 - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
19 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
20 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
21 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
23 - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
24 - cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi
25 - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
26 - cp /opt/grub/grubarm.efi ~/grub_arm.efi
27 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
28 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
29 export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
30 fi
31 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
32 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
33 export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
34 fi
35
36 after_script:
37 - rm -rf /tmp/uboot-test-hooks /tmp/venv
38 script:
39 # If we've been asked to use clang only do one configuration.
40 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
41 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
42 --board ${TEST_PY_BD} ${OVERRIDE}
43 - virtualenv -p /usr/bin/python3 /tmp/venv
44 - . /tmp/venv/bin/activate
45 - pip install -r test/py/requirements.txt
46 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
47 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
48 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
49 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
50 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
51 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
52
53 build all 32bit ARM platforms:
54 tags: [ 'all' ]
55 stage: world build
56 script:
57 - ret=0;
58 ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
59 if [[ $ret -ne 0 ]]; then
60 ./tools/buildman/buildman -o /tmp -seP;
61 exit $ret;
62 fi;
63
64 build all 64bit ARM platforms:
65 tags: [ 'all' ]
66 stage: world build
67 script:
68 - virtualenv -p /usr/bin/python3 /tmp/venv
69 - . /tmp/venv/bin/activate
70 - pip install pyelftools
71 - ret=0;
72 ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
73 if [[ $ret -ne 0 ]]; then
74 ./tools/buildman/buildman -o /tmp -seP;
75 exit $ret;
76 fi;
77
78 build all PowerPC platforms:
79 tags: [ 'all' ]
80 stage: world build
81 script:
82 - ret=0;
83 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
84 if [[ $ret -ne 0 ]]; then
85 ./tools/buildman/buildman -o /tmp -seP;
86 exit $ret;
87 fi;
88
89 build all other platforms:
90 tags: [ 'all' ]
91 stage: world build
92 script:
93 - ret=0;
94 ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
95 if [[ $ret -ne 0 ]]; then
96 ./tools/buildman/buildman -o /tmp -seP;
97 exit $ret;
98 fi;
99
100 # QA jobs for code analytics
101 # static code analysis with cppcheck (we can add --enable=all later)
102 cppcheck:
103 tags: [ 'all' ]
104 stage: testsuites
105 script:
106 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
107
108 # search for TODO within source tree
109 grep TODO/FIXME/HACK:
110 tags: [ 'all' ]
111 stage: testsuites
112 script:
113 - grep -r TODO .
114 - grep -r FIXME .
115 # search for HACK within source tree and ignore HACKKIT board
116 - grep -r HACK . | grep -v HACKKIT
117
118 # build HTML documentation
119 htmldocs:
120 tags: [ 'all' ]
121 stage: testsuites
122 script:
123 - make htmldocs
124
125 # some statistics about the code base
126 sloccount:
127 tags: [ 'all' ]
128 stage: testsuites
129 script:
130 - sloccount .
131
132 # ensure all configs have MAINTAINERS entries
133 Check for configs without MAINTAINERS entry:
134 tags: [ 'all' ]
135 stage: testsuites
136 script:
137 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
138
139 # Ensure host tools build
140 Build tools-only:
141 tags: [ 'all' ]
142 stage: testsuites
143 script:
144 - make tools-only_config tools-only -j$(nproc)
145
146 # Ensure env tools build
147 Build envtools:
148 tags: [ 'all' ]
149 stage: testsuites
150 script:
151 - make tools-only_config envtools -j$(nproc)
152
153 Run binman, buildman, dtoc, Kconfig and patman testsuites:
154 tags: [ 'all' ]
155 stage: testsuites
156 script:
157 - git config --global user.name "GitLab CI Runner";
158 git config --global user.email trini@konsulko.com;
159 export USER=gitlab;
160 virtualenv -p /usr/bin/python3 /tmp/venv;
161 . /tmp/venv/bin/activate;
162 pip install pyelftools pytest;
163 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
164 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
165 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
166 ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl;
167 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
168 ./tools/buildman/buildman -t;
169 ./tools/dtoc/dtoc -t;
170 ./tools/patman/patman --test;
171 make testconfig
172
173 # Test sandbox with test.py
174 sandbox test.py:
175 tags: [ 'all' ]
176 variables:
177 TEST_PY_BD: "sandbox"
178 <<: *buildman_and_testpy_dfn
179
180 sandbox with clang test.py:
181 tags: [ 'all' ]
182 variables:
183 TEST_PY_BD: "sandbox"
184 OVERRIDE: "-O clang-10"
185 <<: *buildman_and_testpy_dfn
186
187 sandbox_spl test.py:
188 tags: [ 'all' ]
189 variables:
190 TEST_PY_BD: "sandbox_spl"
191 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff"
192 <<: *buildman_and_testpy_dfn
193
194 evb-ast2500 test.py:
195 tags: [ 'all' ]
196 variables:
197 TEST_PY_BD: "evb-ast2500"
198 TEST_PY_ID: "--id qemu"
199 <<: *buildman_and_testpy_dfn
200
201 sandbox_flattree test.py:
202 tags: [ 'all' ]
203 variables:
204 TEST_PY_BD: "sandbox_flattree"
205 <<: *buildman_and_testpy_dfn
206
207 vexpress_ca15_tc2 test.py:
208 tags: [ 'all' ]
209 variables:
210 TEST_PY_BD: "vexpress_ca15_tc2"
211 TEST_PY_ID: "--id qemu"
212 <<: *buildman_and_testpy_dfn
213
214 vexpress_ca9x4 test.py:
215 tags: [ 'all' ]
216 variables:
217 TEST_PY_BD: "vexpress_ca9x4"
218 TEST_PY_ID: "--id qemu"
219 <<: *buildman_and_testpy_dfn
220
221 integratorcp_cm926ejs test.py:
222 tags: [ 'all' ]
223 variables:
224 TEST_PY_BD: "integratorcp_cm926ejs"
225 TEST_PY_TEST_SPEC: "not sleep"
226 TEST_PY_ID: "--id qemu"
227 <<: *buildman_and_testpy_dfn
228
229 qemu_arm test.py:
230 tags: [ 'all' ]
231 variables:
232 TEST_PY_BD: "qemu_arm"
233 TEST_PY_TEST_SPEC: "not sleep"
234 <<: *buildman_and_testpy_dfn
235
236 qemu_arm64 test.py:
237 tags: [ 'all' ]
238 variables:
239 TEST_PY_BD: "qemu_arm64"
240 TEST_PY_TEST_SPEC: "not sleep"
241 <<: *buildman_and_testpy_dfn
242
243 qemu_mips test.py:
244 tags: [ 'all' ]
245 variables:
246 TEST_PY_BD: "qemu_mips"
247 TEST_PY_TEST_SPEC: "not sleep"
248 <<: *buildman_and_testpy_dfn
249
250 qemu_mipsel test.py:
251 tags: [ 'all' ]
252 variables:
253 TEST_PY_BD: "qemu_mipsel"
254 TEST_PY_TEST_SPEC: "not sleep"
255 <<: *buildman_and_testpy_dfn
256
257 qemu_mips64 test.py:
258 tags: [ 'all' ]
259 variables:
260 TEST_PY_BD: "qemu_mips64"
261 TEST_PY_TEST_SPEC: "not sleep"
262 <<: *buildman_and_testpy_dfn
263
264 qemu_mips64el test.py:
265 tags: [ 'all' ]
266 variables:
267 TEST_PY_BD: "qemu_mips64el"
268 TEST_PY_TEST_SPEC: "not sleep"
269 <<: *buildman_and_testpy_dfn
270
271 qemu-ppce500 test.py:
272 tags: [ 'all' ]
273 variables:
274 TEST_PY_BD: "qemu-ppce500"
275 TEST_PY_TEST_SPEC: "not sleep"
276 <<: *buildman_and_testpy_dfn
277
278 qemu-riscv32 test.py:
279 tags: [ 'all' ]
280 variables:
281 TEST_PY_BD: "qemu-riscv32"
282 TEST_PY_TEST_SPEC: "not sleep"
283 <<: *buildman_and_testpy_dfn
284
285 qemu-riscv64 test.py:
286 tags: [ 'all' ]
287 variables:
288 TEST_PY_BD: "qemu-riscv64"
289 TEST_PY_TEST_SPEC: "not sleep"
290 <<: *buildman_and_testpy_dfn
291
292 qemu-riscv32_spl test.py:
293 tags: [ 'all' ]
294 variables:
295 TEST_PY_BD: "qemu-riscv32_spl"
296 TEST_PY_TEST_SPEC: "not sleep"
297 <<: *buildman_and_testpy_dfn
298
299 qemu-riscv64_spl test.py:
300 tags: [ 'all' ]
301 variables:
302 TEST_PY_BD: "qemu-riscv64_spl"
303 TEST_PY_TEST_SPEC: "not sleep"
304 <<: *buildman_and_testpy_dfn
305
306 qemu-x86 test.py:
307 tags: [ 'all' ]
308 variables:
309 TEST_PY_BD: "qemu-x86"
310 TEST_PY_TEST_SPEC: "not sleep"
311 <<: *buildman_and_testpy_dfn
312
313 qemu-x86_64 test.py:
314 tags: [ 'all' ]
315 variables:
316 TEST_PY_BD: "qemu-x86_64"
317 TEST_PY_TEST_SPEC: "not sleep"
318 <<: *buildman_and_testpy_dfn
319
320 xilinx_zynq_virt test.py:
321 tags: [ 'all' ]
322 variables:
323 TEST_PY_BD: "xilinx_zynq_virt"
324 TEST_PY_TEST_SPEC: "not sleep"
325 TEST_PY_ID: "--id qemu"
326 <<: *buildman_and_testpy_dfn
327
328 xilinx_versal_virt test.py:
329 tags: [ 'all' ]
330 variables:
331 TEST_PY_BD: "xilinx_versal_virt"
332 TEST_PY_TEST_SPEC: "not sleep"
333 TEST_PY_ID: "--id qemu"
334 <<: *buildman_and_testpy_dfn
335
336 xtfpga test.py:
337 tags: [ 'all' ]
338 variables:
339 TEST_PY_BD: "xtfpga"
340 TEST_PY_TEST_SPEC: "not sleep"
341 TEST_PY_ID: "--id qemu"
342 <<: *buildman_and_testpy_dfn