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-20190720-02Aug2019
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 )
33 - rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/venv
35 # From buildman, exit code 129 means warnings only. If we've been asked to
36 # use clang only do one configuration.
37 - if [[ "${BUILDMAN}" != "" ]]; then
39 tools/buildman/buildman -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
40 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
41 tools/buildman/buildman -sdeP ${BUILDMAN};
45 # "not a_test_which_does_not_exist" is a dummy -k parameter which will
46 # never prevent any test from running. That way, we can always pass
47 # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
49 - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/${TEST_PY_BD};
50 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:/usr/bin:/bin;
51 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
52 if [[ "${TEST_PY_BD}" != "" ]]; then
53 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
54 -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
55 --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
57 if [[ $ret -ne 0 ]]; then
62 build all 32bit ARM platforms:
67 ./tools/buildman/buildman -P -E arm -x aarch64 || ret=$?;
68 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
69 ./tools/buildman/buildman -sdeP;
73 build all 64bit ARM platforms:
77 - virtualenv /tmp/venv
78 - . /tmp/venv/bin/activate
79 - pip install pyelftools
81 ./tools/buildman/buildman -P -E aarch64 || ret=$?;
82 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
83 ./tools/buildman/buildman -sdeP;
87 build all PowerPC platforms:
92 ./tools/buildman/buildman -P -E powerpc || ret=$?;
93 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
94 ./tools/buildman/buildman -sdeP;
98 build all other platforms:
103 ./tools/buildman/buildman -P -E -x arm,powerpc || ret=$?;
104 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
105 ./tools/buildman/buildman -sdeP;
109 # QA jobs for code analytics
110 # static code analysis with cppcheck (we can add --enable=all later)
115 - cppcheck --force --quiet --inline-suppr .
117 # search for TODO within source tree
118 grep TODO/FIXME/HACK:
124 # search for HACK within source tree and ignore HACKKIT board
125 - grep -r HACK . | grep -v HACKKIT
127 # some statistics about the code base
134 # ensure all configs have MAINTAINERS entries
135 Check for configs without MAINTAINERS entry:
139 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
141 # Ensure host tools build
146 - make tools-only_config tools-only -j$(nproc)
148 # Ensure env tools build
153 - make tools-only_config envtools -j$(nproc)
155 Run binman, buildman, dtoc and patman testsuites:
159 - git config --global user.name "GitLab CI Runner";
160 git config --global user.email trini@konsulko.com;
162 virtualenv /tmp/venv;
163 . /tmp/venv/bin/activate;
164 pip install pyelftools;
165 export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/sandbox_spl;
166 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
167 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
168 ./tools/buildman/buildman -P sandbox_spl;
169 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
170 ./tools/buildman/buildman -t;
171 ./tools/dtoc/dtoc -t;
172 ./tools/patman/patman --test
174 # Test sandbox with test.py
178 TEST_PY_BD: "sandbox"
179 BUILDMAN: "^sandbox$"
180 <<: *buildman_and_testpy_dfn
185 TEST_PY_BD: "sandbox_spl"
186 BUILDMAN: "^sandbox_spl$"
187 TEST_PY_TEST_SPEC: "test_ofplatdata"
188 <<: *buildman_and_testpy_dfn
193 TEST_PY_BD: "evb-ast2500"
194 TEST_PY_ID: "--id qemu"
195 BUILDMAN: "^evb-ast2500$"
196 <<: *buildman_and_testpy_dfn
198 sandbox_flattree test.py:
201 TEST_PY_BD: "sandbox_flattree"
202 BUILDMAN: "^sandbox_flattree$"
203 <<: *buildman_and_testpy_dfn
205 vexpress_ca15_tc2 test.py:
208 TEST_PY_BD: "vexpress_ca15_tc2"
209 TEST_PY_ID: "--id qemu"
210 BUILDMAN: "^vexpress_ca15_tc2$"
211 <<: *buildman_and_testpy_dfn
213 vexpress_ca9x4 test.py:
216 TEST_PY_BD: "vexpress_ca9x4"
217 TEST_PY_ID: "--id qemu"
218 BUILDMAN: "^vexpress_ca9x4$"
219 <<: *buildman_and_testpy_dfn
221 integratorcp_cm926ejs test.py:
224 TEST_PY_BD: "integratorcp_cm926ejs"
225 TEST_PY_TEST_SPEC: "not sleep"
226 TEST_PY_ID: "--id qemu"
227 BUILDMAN: "^integratorcp_cm926ejs$"
228 <<: *buildman_and_testpy_dfn
233 TEST_PY_BD: "qemu_arm"
234 TEST_PY_TEST_SPEC: "not sleep"
235 BUILDMAN: "^qemu_arm$"
236 <<: *buildman_and_testpy_dfn
241 TEST_PY_BD: "qemu_arm64"
242 TEST_PY_TEST_SPEC: "not sleep"
243 BUILDMAN: "^qemu_arm64$"
244 <<: *buildman_and_testpy_dfn
249 TEST_PY_BD: "qemu_mips"
250 TEST_PY_TEST_SPEC: "not sleep"
251 BUILDMAN: "^qemu_mips$"
252 <<: *buildman_and_testpy_dfn
257 TEST_PY_BD: "qemu_mipsel"
258 TEST_PY_TEST_SPEC: "not sleep"
259 BUILDMAN: "^qemu_mipsel$"
260 <<: *buildman_and_testpy_dfn
265 TEST_PY_BD: "qemu_mips64"
266 TEST_PY_TEST_SPEC: "not sleep"
267 BUILDMAN: "^qemu_mips64$"
268 <<: *buildman_and_testpy_dfn
270 qemu_mips64el test.py:
273 TEST_PY_BD: "qemu_mips64el"
274 TEST_PY_TEST_SPEC: "not sleep"
275 BUILDMAN: "^qemu_mips64el$"
276 <<: *buildman_and_testpy_dfn
278 qemu-ppce500 test.py:
281 TEST_PY_BD: "qemu-ppce500"
282 TEST_PY_TEST_SPEC: "not sleep"
283 BUILDMAN: "^qemu-ppce500$"
284 <<: *buildman_and_testpy_dfn
286 qemu-riscv64 test.py:
289 TEST_PY_BD: "qemu-riscv64"
290 TEST_PY_TEST_SPEC: "not sleep"
291 BUILDMAN: "^qemu-riscv64$"
292 <<: *buildman_and_testpy_dfn
297 TEST_PY_BD: "qemu-x86"
298 TEST_PY_TEST_SPEC: "not sleep"
299 BUILDMAN: "^qemu-x86$"
300 <<: *buildman_and_testpy_dfn
305 TEST_PY_BD: "qemu-x86_64"
306 TEST_PY_TEST_SPEC: "not sleep"
307 BUILDMAN: "^qemu-x86_64$"
308 <<: *buildman_and_testpy_dfn
313 TEST_PY_BD: "zynq_zc702"
314 TEST_PY_TEST_SPEC: "not sleep"
315 TEST_PY_ID: "--id qemu"
316 BUILDMAN: "^zynq_zc702$"
317 <<: *buildman_and_testpy_dfn
319 xilinx_versal_virt test.py:
322 TEST_PY_BD: "xilinx_versal_virt"
323 TEST_PY_TEST_SPEC: "not sleep"
324 TEST_PY_ID: "--id qemu"
325 BUILDMAN: "^xilinx_versal_virt$"
326 <<: *buildman_and_testpy_dfn
332 TEST_PY_TEST_SPEC: "not sleep"
333 TEST_PY_ID: "--id qemu"
335 <<: *buildman_and_testpy_dfn