1 # SPDX-License-Identifier: GPL-2.0+
3 # Grab our configured image. The source for this is found at:
4 # https://source.denx.de/u-boot/gitlab-ci-runner
5 image: trini/u-boot-gitlab-ci-runner:focal-20210827-11Sep2021
7 # We run some tests in different order, to catch some failures quicker.
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
16 # Clone uboot-test-hooks
17 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
18 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
19 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
20 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
21 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
23 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
24 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
26 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
27 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
28 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
32 - rm -rf /tmp/uboot-test-hooks /tmp/venv
34 # If we've been asked to use clang only do one configuration.
35 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
36 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
37 --board ${TEST_PY_BD} ${OVERRIDE}
38 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
39 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
40 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
41 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
42 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
43 # create sdcard / spi-nor images for sifive unleashed using genimage
44 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
46 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
47 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
49 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
50 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
52 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
53 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
55 - virtualenv -p /usr/bin/python3 /tmp/venv
56 - . /tmp/venv/bin/activate
57 - pip install -r test/py/requirements.txt
58 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
59 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
60 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
61 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
62 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
63 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
65 build all 32bit ARM platforms:
69 ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
70 if [[ $ret -ne 0 ]]; then
71 ./tools/buildman/buildman -o /tmp -seP;
75 build all 64bit ARM platforms:
78 - virtualenv -p /usr/bin/python3 /tmp/venv
79 - . /tmp/venv/bin/activate
80 - pip install pyelftools
82 ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
83 if [[ $ret -ne 0 ]]; then
84 ./tools/buildman/buildman -o /tmp -seP;
88 build all PowerPC platforms:
92 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
93 if [[ $ret -ne 0 ]]; then
94 ./tools/buildman/buildman -o /tmp -seP;
98 build all other platforms:
102 ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
103 if [[ $ret -ne 0 ]]; then
104 ./tools/buildman/buildman -o /tmp -seP;
108 # QA jobs for code analytics
109 # static code analysis with cppcheck (we can add --enable=all later)
113 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
115 # search for TODO within source tree
116 grep TODO/FIXME/HACK:
121 # search for HACK within source tree and ignore HACKKIT board
122 - grep -r HACK . | grep -v HACKKIT
124 # build HTML documentation
128 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
129 - . /tmp/venvhtml/bin/activate
130 - pip install -r doc/sphinx/requirements.txt
133 # some statistics about the code base
139 # ensure all configs have MAINTAINERS entries
140 Check for configs without MAINTAINERS entry:
143 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
145 # Ensure host tools build
149 - make tools-only_config tools-only -j$(nproc)
151 # Ensure env tools build
155 - make tools-only_config envtools -j$(nproc)
157 Run binman, buildman, dtoc, Kconfig and patman testsuites:
160 - git config --global user.name "GitLab CI Runner";
161 git config --global user.email trini@konsulko.com;
163 virtualenv -p /usr/bin/python3 /tmp/venv;
164 . /tmp/venv/bin/activate;
165 pip install -r test/py/requirements.txt;
166 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
167 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
168 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
169 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
171 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
172 ./tools/buildman/buildman -t;
173 ./tools/dtoc/dtoc -t;
174 ./tools/patman/patman test;
177 Run tests for Nokia RX-51 (aka N900):
180 - ./tools/buildman/buildman --fetch-arch arm;
181 export PATH=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/:$PATH;
182 test/nokia_rx51_test.sh
184 # Test sandbox with test.py
187 TEST_PY_BD: "sandbox"
188 <<: *buildman_and_testpy_dfn
190 sandbox with clang test.py:
192 TEST_PY_BD: "sandbox"
193 OVERRIDE: "-O clang-12"
194 <<: *buildman_and_testpy_dfn
198 TEST_PY_BD: "sandbox_spl"
199 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
200 <<: *buildman_and_testpy_dfn
202 sandbox_noinst_test.py:
204 TEST_PY_BD: "sandbox_noinst"
205 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
206 <<: *buildman_and_testpy_dfn
210 TEST_PY_BD: "evb-ast2500"
211 TEST_PY_ID: "--id qemu"
212 <<: *buildman_and_testpy_dfn
214 sandbox_flattree test.py:
216 TEST_PY_BD: "sandbox_flattree"
217 <<: *buildman_and_testpy_dfn
219 integratorcp_cm926ejs test.py:
221 TEST_PY_BD: "integratorcp_cm926ejs"
222 TEST_PY_TEST_SPEC: "not sleep"
223 TEST_PY_ID: "--id qemu"
224 <<: *buildman_and_testpy_dfn
228 TEST_PY_BD: "qemu_arm"
229 TEST_PY_TEST_SPEC: "not sleep"
230 <<: *buildman_and_testpy_dfn
234 TEST_PY_BD: "qemu_arm64"
235 TEST_PY_TEST_SPEC: "not sleep"
236 <<: *buildman_and_testpy_dfn
241 TEST_PY_TEST_SPEC: "not sleep and not efi"
242 TEST_PY_ID: "--id qemu"
243 <<: *buildman_and_testpy_dfn
245 qemu_maltael test.py:
247 TEST_PY_BD: "maltael"
248 TEST_PY_TEST_SPEC: "not sleep and not efi"
249 TEST_PY_ID: "--id qemu"
250 <<: *buildman_and_testpy_dfn
252 qemu_malta64 test.py:
254 TEST_PY_BD: "malta64"
255 TEST_PY_TEST_SPEC: "not sleep and not efi"
256 TEST_PY_ID: "--id qemu"
257 <<: *buildman_and_testpy_dfn
259 qemu_malta64el test.py:
261 TEST_PY_BD: "malta64el"
262 TEST_PY_TEST_SPEC: "not sleep and not efi"
263 TEST_PY_ID: "--id qemu"
264 <<: *buildman_and_testpy_dfn
266 qemu-ppce500 test.py:
268 TEST_PY_BD: "qemu-ppce500"
269 TEST_PY_TEST_SPEC: "not sleep"
270 <<: *buildman_and_testpy_dfn
272 qemu-riscv32 test.py:
274 TEST_PY_BD: "qemu-riscv32"
275 TEST_PY_TEST_SPEC: "not sleep"
276 <<: *buildman_and_testpy_dfn
278 qemu-riscv64 test.py:
280 TEST_PY_BD: "qemu-riscv64"
281 TEST_PY_TEST_SPEC: "not sleep"
282 <<: *buildman_and_testpy_dfn
284 qemu-riscv32_spl test.py:
286 TEST_PY_BD: "qemu-riscv32_spl"
287 TEST_PY_TEST_SPEC: "not sleep"
288 <<: *buildman_and_testpy_dfn
290 qemu-riscv64_spl test.py:
292 TEST_PY_BD: "qemu-riscv64_spl"
293 TEST_PY_TEST_SPEC: "not sleep"
294 <<: *buildman_and_testpy_dfn
298 TEST_PY_BD: "qemu-x86"
299 TEST_PY_TEST_SPEC: "not sleep"
300 <<: *buildman_and_testpy_dfn
304 TEST_PY_BD: "qemu-x86_64"
305 TEST_PY_TEST_SPEC: "not sleep"
306 <<: *buildman_and_testpy_dfn
308 r2dplus_i82557c test.py:
310 TEST_PY_BD: "r2dplus"
311 TEST_PY_ID: "--id i82557c_qemu"
312 <<: *buildman_and_testpy_dfn
314 r2dplus_pcnet test.py:
316 TEST_PY_BD: "r2dplus"
317 TEST_PY_ID: "--id pcnet_qemu"
318 <<: *buildman_and_testpy_dfn
320 r2dplus_rtl8139 test.py:
322 TEST_PY_BD: "r2dplus"
323 TEST_PY_ID: "--id rtl8139_qemu"
324 <<: *buildman_and_testpy_dfn
326 r2dplus_tulip test.py:
328 TEST_PY_BD: "r2dplus"
329 TEST_PY_ID: "--id tulip_qemu"
330 <<: *buildman_and_testpy_dfn
332 sifive_unleashed_sdcard test.py:
334 TEST_PY_BD: "sifive_unleashed"
335 TEST_PY_ID: "--id sdcard_qemu"
336 <<: *buildman_and_testpy_dfn
338 sifive_unleashed_spi-nor test.py:
340 TEST_PY_BD: "sifive_unleashed"
341 TEST_PY_ID: "--id spi-nor_qemu"
342 <<: *buildman_and_testpy_dfn
344 xilinx_zynq_virt test.py:
346 TEST_PY_BD: "xilinx_zynq_virt"
347 TEST_PY_TEST_SPEC: "not sleep"
348 TEST_PY_ID: "--id qemu"
349 <<: *buildman_and_testpy_dfn
351 xilinx_versal_virt test.py:
353 TEST_PY_BD: "xilinx_versal_virt"
354 TEST_PY_TEST_SPEC: "not sleep"
355 TEST_PY_ID: "--id qemu"
356 <<: *buildman_and_testpy_dfn
361 TEST_PY_TEST_SPEC: "not sleep"
362 TEST_PY_ID: "--id qemu"
363 <<: *buildman_and_testpy_dfn