blob: a84bc3e1ee99e4497fd62c10ddf7a80b079d2b4c [file] [log] [blame]
Tom Rini1a62a722019-06-19 09:25:17 -04001# 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
Tom Rini20bc19a2020-04-10 15:53:01 -04005image: trini/u-boot-gitlab-ci-runner:bionic-20200311-10Apr2020
Tom Rini1a62a722019-06-19 09:25:17 -04006
7# We run some tests in different order, to catch some failures quicker.
8stages:
Tom Rini1a62a722019-06-19 09:25:17 -04009 - testsuites
Tom Rinib29cb052019-07-24 13:09:31 -040010 - test.py
Tom Rini1a62a722019-06-19 09:25:17 -040011 - 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`
Tom Rini28a51232019-10-04 12:12:54 -040021 - 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
Heinrich Schuchardt24df1b12019-12-19 13:30:32 +010023 - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
Bin Menga379d332020-03-28 07:25:27 -070024 - cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi
Heinrich Schuchardt24df1b12019-12-19 13:30:32 +010025 - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
26 - cp /opt/grub/grubarm.efi ~/grub_arm.efi
Bin Meng49fb28a2020-03-28 07:25:29 -070027 - 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
Tom Rinib29cb052019-07-24 13:09:31 -040035
Tom Rini1a62a722019-06-19 09:25:17 -040036 after_script:
Heinrich Schuchardt24df1b12019-12-19 13:30:32 +010037 - rm -rf /tmp/uboot-test-hooks /tmp/venv
Tom Rini1a62a722019-06-19 09:25:17 -040038 script:
39 # From buildman, exit code 129 means warnings only. If we've been asked to
40 # use clang only do one configuration.
41 - if [[ "${BUILDMAN}" != "" ]]; then
42 ret=0;
Simon Glass26d4d772020-02-11 17:15:19 -070043 tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
Tom Rini1a62a722019-06-19 09:25:17 -040044 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
Tom Rinidb7b8602019-10-04 12:12:53 -040045 tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN};
Tom Rini1a62a722019-06-19 09:25:17 -040046 exit $ret;
47 fi;
48 fi
49 # "not a_test_which_does_not_exist" is a dummy -k parameter which will
50 # never prevent any test from running. That way, we can always pass
51 # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
52 # value.
Tom Rini085b8972019-10-24 11:59:27 -040053 - virtualenv -p /usr/bin/python3 /tmp/venv
54 - . /tmp/venv/bin/activate
55 - pip install -r test/py/requirements.txt
Tom Rinidb7b8602019-10-04 12:12:53 -040056 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/${TEST_PY_BD};
Tom Rini90d3d782019-10-24 11:59:17 -040057 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Tom Rini1a62a722019-06-19 09:25:17 -040058 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
59 if [[ "${TEST_PY_BD}" != "" ]]; then
60 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
61 -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
62 --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
63 ret=$?;
64 if [[ $ret -ne 0 ]]; then
65 exit $ret;
66 fi;
67 fi;
68
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020069build all 32bit ARM platforms:
Tom Rini1a62a722019-06-19 09:25:17 -040070 tags: [ 'all' ]
71 stage: world build
72 script:
73 - ret=0;
Tom Rini4c749972019-10-24 11:59:16 -040074 ./tools/buildman/buildman -o /tmp -P -E arm -x aarch64 || ret=$?;
75 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
76 ./tools/buildman/buildman -o /tmp -sdeP;
77 exit $ret;
78 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040079
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020080build all 64bit ARM platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040081 tags: [ 'all' ]
82 stage: world build
83 script:
Tom Rini26a426a2020-02-11 12:41:14 -050084 - virtualenv -p /usr/bin/python3 /tmp/venv
Tom Rinif0db8392019-07-18 07:28:36 -040085 - . /tmp/venv/bin/activate
86 - pip install pyelftools
Tom Rini9f7bda12019-07-17 17:51:28 -040087 - ret=0;
Tom Rini4c749972019-10-24 11:59:16 -040088 ./tools/buildman/buildman -o /tmp -P -E aarch64 || ret=$?;
89 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
90 ./tools/buildman/buildman -o /tmp -sdeP;
91 exit $ret;
92 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040093
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020094build all PowerPC platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040095 tags: [ 'all' ]
96 stage: world build
97 script:
98 - ret=0;
Tom Rini4c749972019-10-24 11:59:16 -040099 ./tools/buildman/buildman -o /tmp -P -E powerpc || ret=$?;
100 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
101 ./tools/buildman/buildman -o /tmp -sdeP;
102 exit $ret;
103 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -0400104
Heinrich Schuchardta11cb572019-10-06 12:26:16 +0200105build all other platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -0400106 tags: [ 'all' ]
107 stage: world build
108 script:
109 - ret=0;
Tom Rini4c749972019-10-24 11:59:16 -0400110 ./tools/buildman/buildman -o /tmp -P -E -x arm,powerpc || ret=$?;
111 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
112 ./tools/buildman/buildman -o /tmp -sdeP;
113 exit $ret;
114 fi;
Tom Rini1a62a722019-06-19 09:25:17 -0400115
116# QA jobs for code analytics
117# static code analysis with cppcheck (we can add --enable=all later)
118cppcheck:
119 tags: [ 'all' ]
120 stage: testsuites
121 script:
122 - cppcheck --force --quiet --inline-suppr .
123
124# search for TODO within source tree
125grep TODO/FIXME/HACK:
126 tags: [ 'all' ]
127 stage: testsuites
128 script:
129 - grep -r TODO .
130 - grep -r FIXME .
131 # search for HACK within source tree and ignore HACKKIT board
132 - grep -r HACK . | grep -v HACKKIT
133
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100134# build HTML documentation
135htmldocs:
136 tags: [ 'all' ]
137 stage: testsuites
138 script:
139 - make htmldocs
140
Tom Rini1a62a722019-06-19 09:25:17 -0400141# some statistics about the code base
142sloccount:
143 tags: [ 'all' ]
144 stage: testsuites
145 script:
146 - sloccount .
147
148# ensure all configs have MAINTAINERS entries
149Check for configs without MAINTAINERS entry:
150 tags: [ 'all' ]
151 stage: testsuites
152 script:
153 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
154
155# Ensure host tools build
156Build tools-only:
157 tags: [ 'all' ]
158 stage: testsuites
159 script:
160 - make tools-only_config tools-only -j$(nproc)
161
Pierre-Jean Texier1f3910d2019-08-26 13:06:18 +0200162# Ensure env tools build
163Build envtools:
164 tags: [ 'all' ]
165 stage: testsuites
166 script:
167 - make tools-only_config envtools -j$(nproc)
168
Tom Rini72618332020-03-11 18:11:15 -0400169Run binman, buildman, dtoc, Kconfig and patman testsuites:
Tom Rini1a62a722019-06-19 09:25:17 -0400170 tags: [ 'all' ]
171 stage: testsuites
172 script:
Tom Rinid7ae9322019-08-12 10:09:08 -0400173 - git config --global user.name "GitLab CI Runner";
174 git config --global user.email trini@konsulko.com;
175 export USER=gitlab;
Tom Rini26a426a2020-02-11 12:41:14 -0500176 virtualenv -p /usr/bin/python3 /tmp/venv;
Tom Rinid7ae9322019-08-12 10:09:08 -0400177 . /tmp/venv/bin/activate;
Tom Rini72618332020-03-11 18:11:15 -0400178 pip install pyelftools pytest;
Simon Glassbf0a8132020-03-18 09:42:50 -0600179 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
Tom Rinid7ae9322019-08-12 10:09:08 -0400180 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
181 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
Simon Glassbf0a8132020-03-18 09:42:50 -0600182 ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl;
Tom Rinid7ae9322019-08-12 10:09:08 -0400183 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
184 ./tools/buildman/buildman -t;
185 ./tools/dtoc/dtoc -t;
Tom Rini72618332020-03-11 18:11:15 -0400186 ./tools/patman/patman --test;
187 make testconfig
Tom Rini1a62a722019-06-19 09:25:17 -0400188
189# Test sandbox with test.py
190sandbox test.py:
191 tags: [ 'all' ]
192 variables:
193 TEST_PY_BD: "sandbox"
194 BUILDMAN: "^sandbox$"
195 <<: *buildman_and_testpy_dfn
196
Tom Rini0219d012019-11-06 19:30:47 -0500197sandbox with clang test.py:
198 tags: [ 'all' ]
199 variables:
200 TEST_PY_BD: "sandbox"
201 BUILDMAN: "^sandbox$"
202 OVERRIDE: "-O clang-7"
203 <<: *buildman_and_testpy_dfn
204
Tom Rini1a62a722019-06-19 09:25:17 -0400205sandbox_spl test.py:
206 tags: [ 'all' ]
207 variables:
208 TEST_PY_BD: "sandbox_spl"
209 BUILDMAN: "^sandbox_spl$"
210 TEST_PY_TEST_SPEC: "test_ofplatdata"
211 <<: *buildman_and_testpy_dfn
212
Tom Rini699c0b92019-07-17 16:06:57 -0400213evb-ast2500 test.py:
214 tags: [ 'all' ]
215 variables:
216 TEST_PY_BD: "evb-ast2500"
217 TEST_PY_ID: "--id qemu"
Tom Rini699c0b92019-07-17 16:06:57 -0400218 BUILDMAN: "^evb-ast2500$"
219 <<: *buildman_and_testpy_dfn
220
Tom Rini1a62a722019-06-19 09:25:17 -0400221sandbox_flattree test.py:
222 tags: [ 'all' ]
223 variables:
224 TEST_PY_BD: "sandbox_flattree"
225 BUILDMAN: "^sandbox_flattree$"
226 <<: *buildman_and_testpy_dfn
227
228vexpress_ca15_tc2 test.py:
229 tags: [ 'all' ]
230 variables:
231 TEST_PY_BD: "vexpress_ca15_tc2"
232 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400233 BUILDMAN: "^vexpress_ca15_tc2$"
234 <<: *buildman_and_testpy_dfn
235
236vexpress_ca9x4 test.py:
237 tags: [ 'all' ]
238 variables:
239 TEST_PY_BD: "vexpress_ca9x4"
240 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400241 BUILDMAN: "^vexpress_ca9x4$"
242 <<: *buildman_and_testpy_dfn
243
244integratorcp_cm926ejs test.py:
245 tags: [ 'all' ]
246 variables:
247 TEST_PY_BD: "integratorcp_cm926ejs"
248 TEST_PY_TEST_SPEC: "not sleep"
249 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400250 BUILDMAN: "^integratorcp_cm926ejs$"
251 <<: *buildman_and_testpy_dfn
252
253qemu_arm test.py:
254 tags: [ 'all' ]
255 variables:
256 TEST_PY_BD: "qemu_arm"
257 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400258 BUILDMAN: "^qemu_arm$"
259 <<: *buildman_and_testpy_dfn
260
261qemu_arm64 test.py:
262 tags: [ 'all' ]
263 variables:
264 TEST_PY_BD: "qemu_arm64"
265 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400266 BUILDMAN: "^qemu_arm64$"
267 <<: *buildman_and_testpy_dfn
268
269qemu_mips test.py:
270 tags: [ 'all' ]
271 variables:
272 TEST_PY_BD: "qemu_mips"
273 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400274 BUILDMAN: "^qemu_mips$"
Tom Rini1a62a722019-06-19 09:25:17 -0400275 <<: *buildman_and_testpy_dfn
276
277qemu_mipsel test.py:
278 tags: [ 'all' ]
279 variables:
280 TEST_PY_BD: "qemu_mipsel"
281 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400282 BUILDMAN: "^qemu_mipsel$"
Tom Rini1a62a722019-06-19 09:25:17 -0400283 <<: *buildman_and_testpy_dfn
284
285qemu_mips64 test.py:
286 tags: [ 'all' ]
287 variables:
288 TEST_PY_BD: "qemu_mips64"
289 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400290 BUILDMAN: "^qemu_mips64$"
Tom Rini1a62a722019-06-19 09:25:17 -0400291 <<: *buildman_and_testpy_dfn
292
293qemu_mips64el test.py:
294 tags: [ 'all' ]
295 variables:
296 TEST_PY_BD: "qemu_mips64el"
297 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400298 BUILDMAN: "^qemu_mips64el$"
Tom Rini1a62a722019-06-19 09:25:17 -0400299 <<: *buildman_and_testpy_dfn
300
301qemu-ppce500 test.py:
302 tags: [ 'all' ]
303 variables:
304 TEST_PY_BD: "qemu-ppce500"
305 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400306 BUILDMAN: "^qemu-ppce500$"
Tom Rini1a62a722019-06-19 09:25:17 -0400307 <<: *buildman_and_testpy_dfn
308
Bin Menga379d332020-03-28 07:25:27 -0700309qemu-riscv32 test.py:
310 tags: [ 'all' ]
311 variables:
312 TEST_PY_BD: "qemu-riscv32"
313 TEST_PY_TEST_SPEC: "not sleep"
314 BUILDMAN: "^qemu-riscv32$"
315 <<: *buildman_and_testpy_dfn
316
Tom Rini7298d822019-08-02 11:32:37 -0400317qemu-riscv64 test.py:
318 tags: [ 'all' ]
319 variables:
320 TEST_PY_BD: "qemu-riscv64"
321 TEST_PY_TEST_SPEC: "not sleep"
322 BUILDMAN: "^qemu-riscv64$"
323 <<: *buildman_and_testpy_dfn
324
Bin Meng49fb28a2020-03-28 07:25:29 -0700325qemu-riscv32_spl test.py:
326 tags: [ 'all' ]
327 variables:
328 TEST_PY_BD: "qemu-riscv32_spl"
329 TEST_PY_TEST_SPEC: "not sleep"
330 BUILDMAN: "^qemu-riscv32_spl$"
331 <<: *buildman_and_testpy_dfn
332
333qemu-riscv64_spl test.py:
334 tags: [ 'all' ]
335 variables:
336 TEST_PY_BD: "qemu-riscv64_spl"
337 TEST_PY_TEST_SPEC: "not sleep"
338 BUILDMAN: "^qemu-riscv64_spl$"
339 <<: *buildman_and_testpy_dfn
340
Tom Rini1a62a722019-06-19 09:25:17 -0400341qemu-x86 test.py:
342 tags: [ 'all' ]
343 variables:
344 TEST_PY_BD: "qemu-x86"
345 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400346 BUILDMAN: "^qemu-x86$"
Tom Rini1a62a722019-06-19 09:25:17 -0400347 <<: *buildman_and_testpy_dfn
348
349qemu-x86_64 test.py:
350 tags: [ 'all' ]
351 variables:
352 TEST_PY_BD: "qemu-x86_64"
353 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400354 BUILDMAN: "^qemu-x86_64$"
Tom Rini1a62a722019-06-19 09:25:17 -0400355 <<: *buildman_and_testpy_dfn
356
Michal Simekf7c6ee72020-02-13 15:03:29 +0100357xilinx_zynq_virt test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400358 tags: [ 'all' ]
359 variables:
Michal Simekf7c6ee72020-02-13 15:03:29 +0100360 TEST_PY_BD: "xilinx_zynq_virt"
Tom Rini1a62a722019-06-19 09:25:17 -0400361 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400362 TEST_PY_ID: "--id qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100363 BUILDMAN: "^xilinx_zynq_virt$"
Tom Rini1a62a722019-06-19 09:25:17 -0400364 <<: *buildman_and_testpy_dfn
365
366xilinx_versal_virt test.py:
367 tags: [ 'all' ]
368 variables:
369 TEST_PY_BD: "xilinx_versal_virt"
370 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400371 TEST_PY_ID: "--id qemu"
372 BUILDMAN: "^xilinx_versal_virt$"
373 <<: *buildman_and_testpy_dfn
374
375xtfpga test.py:
376 tags: [ 'all' ]
377 variables:
378 TEST_PY_BD: "xtfpga"
379 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400380 TEST_PY_ID: "--id qemu"
381 BUILDMAN: "^xtfpga$"
Tom Rini1a62a722019-06-19 09:25:17 -0400382 <<: *buildman_and_testpy_dfn