1 # SPDX-License-Identifier: GPL-2.0+
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:xenial-20190222-24April2019
7 # We run some tests in different order, to catch some failures quicker.
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
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 - virtualenv /tmp/venv
22 - . /tmp/venv/bin/activate
23 - pip install pytest==2.8.7
24 - pip install python-subunit
25 - grub-mkimage -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
26 - grub-mkimage -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
28 - ( cd ~/grub2-arm; wget -O - http://download.opensuse.org/ports/armv7hl/distribution/leap/42.2/repo/oss/suse/armv7hl/grub2-arm-efi-2.02~beta2-87.1.armv7hl.rpm | rpm2cpio | cpio -di )
30 - ( cd ~/grub2-arm64; wget -O - http://download.opensuse.org/ports/aarch64/distribution/leap/42.2/repo/oss/suse/aarch64/grub2-arm64-efi-2.02~beta2-87.1.aarch64.rpm | rpm2cpio | cpio -di )
31 - if [[ "${QEMU_TARGET}" != "" ]]; then
32 git clone git://git.qemu.org/qemu.git /tmp/qemu;
34 git submodule update --init dtc &&
35 git checkout ${QEMU_VERSION} &&
36 ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} &&
37 make -j$(nproc) all install;
41 - rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/qemu /tmp/venv
43 # From buildman, exit code 129 means warnings only. If we've been asked to
44 # use clang only do one configuration.
45 - if [[ "${BUILDMAN}" != "" ]]; then
47 tools/buildman/buildman -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
48 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
49 tools/buildman/buildman -sdeP ${BUILDMAN};
53 # "not a_test_which_does_not_exist" is a dummy -k parameter which will
54 # never prevent any test from running. That way, we can always pass
55 # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
57 - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/${TEST_PY_BD};
58 export PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/usr/bin:/bin;
59 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
60 if [[ "${TEST_PY_BD}" != "" ]]; then
61 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
62 -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
63 --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
65 if [[ $ret -ne 0 ]]; then
75 ./tools/buildman/buildman -P -E || ret=$?;
76 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
77 ./tools/buildman/buildman -sdeP;
81 # QA jobs for code analytics
82 # static code analysis with cppcheck (we can add --enable=all later)
87 - cppcheck --force --quiet --inline-suppr .
89 # search for TODO within source tree
96 # search for HACK within source tree and ignore HACKKIT board
97 - grep -r HACK . | grep -v HACKKIT
99 # some statistics about the code base
106 # ensure all configs have MAINTAINERS entries
107 Check for configs without MAINTAINERS entry:
111 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
113 # Ensure host tools build
118 - make tools-only_config tools-only -j$(nproc)
120 # Run various tool tests
121 Run patman testsuite:
125 - git config --global user.name "GitLab CI Runner"
127 - ./tools/patman/patman --test
129 Run buildman testsuite:
133 - ./tools/buildman/buildman -t
135 Run binman and dtoc testsuite:
139 - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/sandbox_spl;
140 ./tools/buildman/buildman -P sandbox_spl &&
141 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
142 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
143 ./tools/binman/binman -t &&
146 # Test sandbox with test.py
150 TEST_PY_BD: "sandbox"
151 BUILDMAN: "^sandbox$"
152 <<: *buildman_and_testpy_dfn
157 TEST_PY_BD: "sandbox_spl"
158 BUILDMAN: "^sandbox_spl$"
159 TEST_PY_TEST_SPEC: "test_ofplatdata"
160 <<: *buildman_and_testpy_dfn
162 sandbox_flattree test.py:
165 TEST_PY_BD: "sandbox_flattree"
166 BUILDMAN: "^sandbox_flattree$"
167 <<: *buildman_and_testpy_dfn
169 vexpress_ca15_tc2 test.py:
172 TEST_PY_BD: "vexpress_ca15_tc2"
173 TEST_PY_ID: "--id qemu"
174 QEMU_TARGET: "arm-softmmu"
175 QEMU_VERSION: "v3.0.0"
176 BUILDMAN: "^vexpress_ca15_tc2$"
177 <<: *buildman_and_testpy_dfn
179 vexpress_ca9x4 test.py:
182 TEST_PY_BD: "vexpress_ca9x4"
183 TEST_PY_ID: "--id qemu"
184 QEMU_TARGET: "arm-softmmu"
185 BUILDMAN: "^vexpress_ca9x4$"
186 <<: *buildman_and_testpy_dfn
188 integratorcp_cm926ejs test.py:
191 TEST_PY_BD: "integratorcp_cm926ejs"
192 TEST_PY_TEST_SPEC: "not sleep"
193 TEST_PY_ID: "--id qemu"
194 QEMU_TARGET: "arm-softmmu"
195 BUILDMAN: "^integratorcp_cm926ejs$"
196 <<: *buildman_and_testpy_dfn
201 TEST_PY_BD: "qemu_arm"
202 TEST_PY_TEST_SPEC: "not sleep"
203 QEMU_TARGET: "arm-softmmu"
204 BUILDMAN: "^qemu_arm$"
205 <<: *buildman_and_testpy_dfn
210 TEST_PY_BD: "qemu_arm64"
211 TEST_PY_TEST_SPEC: "not sleep"
212 QEMU_TARGET: "aarch64-softmmu"
213 BUILDMAN: "^qemu_arm64$"
214 <<: *buildman_and_testpy_dfn
219 TEST_PY_BD: "qemu_mips"
220 TEST_PY_TEST_SPEC: "not sleep"
221 QEMU_TARGET: "mips-softmmu"
222 BUILDMAN: "^qemu_mips$"
224 <<: *buildman_and_testpy_dfn
229 TEST_PY_BD: "qemu_mipsel"
230 TEST_PY_TEST_SPEC: "not sleep"
231 QEMU_TARGET: "mipsel-softmmu"
232 BUILDMAN: "^qemu_mipsel$"
234 <<: *buildman_and_testpy_dfn
239 TEST_PY_BD: "qemu_mips64"
240 TEST_PY_TEST_SPEC: "not sleep"
241 QEMU_TARGET: "mips64-softmmu"
242 BUILDMAN: "^qemu_mips64$"
244 <<: *buildman_and_testpy_dfn
246 qemu_mips64el test.py:
249 TEST_PY_BD: "qemu_mips64el"
250 TEST_PY_TEST_SPEC: "not sleep"
251 QEMU_TARGET: "mips64el-softmmu"
252 BUILDMAN: "^qemu_mips64el$"
254 <<: *buildman_and_testpy_dfn
256 qemu-ppce500 test.py:
259 TEST_PY_BD: "qemu-ppce500"
260 TEST_PY_TEST_SPEC: "not sleep"
261 QEMU_TARGET: "ppc-softmmu"
262 BUILDMAN: "^qemu-ppce500$"
264 <<: *buildman_and_testpy_dfn
269 TEST_PY_BD: "qemu-x86"
270 TEST_PY_TEST_SPEC: "not sleep"
271 QEMU_TARGET: "i386-softmmu"
272 BUILDMAN: "^qemu-x86$"
274 <<: *buildman_and_testpy_dfn
279 TEST_PY_BD: "qemu-x86_64"
280 TEST_PY_TEST_SPEC: "not sleep"
281 QEMU_TARGET: "x86_64-softmmu"
282 BUILDMAN: "^qemu-x86_64$"
284 <<: *buildman_and_testpy_dfn
289 TEST_PY_BD: "zynq_zc702"
290 TEST_PY_TEST_SPEC: "not sleep"
291 QEMU_TARGET: "arm-softmmu"
292 TEST_PY_ID: "--id qemu"
293 BUILDMAN: "^zynq_zc702$"
294 <<: *buildman_and_testpy_dfn
296 xilinx_versal_virt test.py:
299 TEST_PY_BD: "xilinx_versal_virt"
300 TEST_PY_TEST_SPEC: "not sleep"
301 QEMU_TARGET: "aarch64-softmmu"
302 TEST_PY_ID: "--id qemu"
303 BUILDMAN: "^xilinx_versal_virt$"
304 <<: *buildman_and_testpy_dfn
310 TEST_PY_TEST_SPEC: "not sleep"
311 QEMU_TARGET: "xtensa-softmmu"
312 TEST_PY_ID: "--id qemu"
314 TOOLCHAIN: "xtensa-dc233c-elf"
315 <<: *buildman_and_testpy_dfn