blob: 84e79bf03218e752f0b1fd95423a0325c518fca3 [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 Rini7298d822019-08-02 11:32:37 -04005image: trini/u-boot-gitlab-ci-runner:xenial-20190720-02Aug2019
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`
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
27 - mkdir ~/grub2-arm
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 )
29 - mkdir ~/grub2-arm64
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 )
Tom Rinib29cb052019-07-24 13:09:31 -040031
Tom Rini1a62a722019-06-19 09:25:17 -040032 after_script:
Tom Rinib29cb052019-07-24 13:09:31 -040033 - rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/venv
Tom Rini1a62a722019-06-19 09:25:17 -040034 script:
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
38 ret=0;
39 tools/buildman/buildman -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
40 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
41 tools/buildman/buildman -sdeP ${BUILDMAN};
42 exit $ret;
43 fi;
44 fi
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
48 # value.
49 - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/${TEST_PY_BD};
Tom Rinib29cb052019-07-24 13:09:31 -040050 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:/usr/bin:/bin;
Tom Rini1a62a722019-06-19 09:25:17 -040051 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";
56 ret=$?;
57 if [[ $ret -ne 0 ]]; then
58 exit $ret;
59 fi;
60 fi;
61
Tom Rini9f7bda12019-07-17 17:51:28 -040062build all 32bit ARM plaforms:
Tom Rini1a62a722019-06-19 09:25:17 -040063 tags: [ 'all' ]
64 stage: world build
65 script:
66 - ret=0;
Tom Rini9f7bda12019-07-17 17:51:28 -040067 ./tools/buildman/buildman -P -E arm -x aarch64 || ret=$?;
68 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
69 ./tools/buildman/buildman -sdeP;
70 exit $ret;
71 fi;
72
73build all 64bit ARM plaforms:
74 tags: [ 'all' ]
75 stage: world build
76 script:
Tom Rinif0db8392019-07-18 07:28:36 -040077 - virtualenv /tmp/venv
78 - . /tmp/venv/bin/activate
79 - pip install pyelftools
Tom Rini9f7bda12019-07-17 17:51:28 -040080 - ret=0;
81 ./tools/buildman/buildman -P -E aarch64 || ret=$?;
82 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
83 ./tools/buildman/buildman -sdeP;
84 exit $ret;
85 fi;
86
87build all PowerPC plaforms:
88 tags: [ 'all' ]
89 stage: world build
90 script:
91 - ret=0;
92 ./tools/buildman/buildman -P -E powerpc || ret=$?;
93 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
94 ./tools/buildman/buildman -sdeP;
95 exit $ret;
96 fi;
97
98build all other plaforms:
99 tags: [ 'all' ]
100 stage: world build
101 script:
102 - ret=0;
103 ./tools/buildman/buildman -P -E -x arm,powerpc || ret=$?;
Tom Rini1a62a722019-06-19 09:25:17 -0400104 if [[ $ret -ne 0 && $ret -ne 129 ]]; then
105 ./tools/buildman/buildman -sdeP;
106 exit $ret;
107 fi;
108
109# QA jobs for code analytics
110# static code analysis with cppcheck (we can add --enable=all later)
111cppcheck:
112 tags: [ 'all' ]
113 stage: testsuites
114 script:
115 - cppcheck --force --quiet --inline-suppr .
116
117# search for TODO within source tree
118grep TODO/FIXME/HACK:
119 tags: [ 'all' ]
120 stage: testsuites
121 script:
122 - grep -r TODO .
123 - grep -r FIXME .
124 # search for HACK within source tree and ignore HACKKIT board
125 - grep -r HACK . | grep -v HACKKIT
126
127# some statistics about the code base
128sloccount:
129 tags: [ 'all' ]
130 stage: testsuites
131 script:
132 - sloccount .
133
134# ensure all configs have MAINTAINERS entries
135Check for configs without MAINTAINERS entry:
136 tags: [ 'all' ]
137 stage: testsuites
138 script:
139 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
140
141# Ensure host tools build
142Build tools-only:
143 tags: [ 'all' ]
144 stage: testsuites
145 script:
146 - make tools-only_config tools-only -j$(nproc)
147
Tom Rinid7ae9322019-08-12 10:09:08 -0400148Run binman, buildman, dtoc and patman testsuites:
Tom Rini1a62a722019-06-19 09:25:17 -0400149 tags: [ 'all' ]
150 stage: testsuites
151 script:
Tom Rinid7ae9322019-08-12 10:09:08 -0400152 - git config --global user.name "GitLab CI Runner";
153 git config --global user.email trini@konsulko.com;
154 export USER=gitlab;
155 virtualenv /tmp/venv;
156 . /tmp/venv/bin/activate;
157 pip install pyelftools;
158 export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/sandbox_spl;
159 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
160 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
161 ./tools/buildman/buildman -P sandbox_spl;
162 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
163 ./tools/buildman/buildman -t;
164 ./tools/dtoc/dtoc -t;
165 ./tools/patman/patman --test
Tom Rini1a62a722019-06-19 09:25:17 -0400166
167# Test sandbox with test.py
168sandbox test.py:
169 tags: [ 'all' ]
170 variables:
171 TEST_PY_BD: "sandbox"
172 BUILDMAN: "^sandbox$"
173 <<: *buildman_and_testpy_dfn
174
175sandbox_spl test.py:
176 tags: [ 'all' ]
177 variables:
178 TEST_PY_BD: "sandbox_spl"
179 BUILDMAN: "^sandbox_spl$"
180 TEST_PY_TEST_SPEC: "test_ofplatdata"
181 <<: *buildman_and_testpy_dfn
182
Tom Rini699c0b92019-07-17 16:06:57 -0400183evb-ast2500 test.py:
184 tags: [ 'all' ]
185 variables:
186 TEST_PY_BD: "evb-ast2500"
187 TEST_PY_ID: "--id qemu"
Tom Rini699c0b92019-07-17 16:06:57 -0400188 BUILDMAN: "^evb-ast2500$"
189 <<: *buildman_and_testpy_dfn
190
Tom Rini1a62a722019-06-19 09:25:17 -0400191sandbox_flattree test.py:
192 tags: [ 'all' ]
193 variables:
194 TEST_PY_BD: "sandbox_flattree"
195 BUILDMAN: "^sandbox_flattree$"
196 <<: *buildman_and_testpy_dfn
197
198vexpress_ca15_tc2 test.py:
199 tags: [ 'all' ]
200 variables:
201 TEST_PY_BD: "vexpress_ca15_tc2"
202 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400203 BUILDMAN: "^vexpress_ca15_tc2$"
204 <<: *buildman_and_testpy_dfn
205
206vexpress_ca9x4 test.py:
207 tags: [ 'all' ]
208 variables:
209 TEST_PY_BD: "vexpress_ca9x4"
210 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400211 BUILDMAN: "^vexpress_ca9x4$"
212 <<: *buildman_and_testpy_dfn
213
214integratorcp_cm926ejs test.py:
215 tags: [ 'all' ]
216 variables:
217 TEST_PY_BD: "integratorcp_cm926ejs"
218 TEST_PY_TEST_SPEC: "not sleep"
219 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400220 BUILDMAN: "^integratorcp_cm926ejs$"
221 <<: *buildman_and_testpy_dfn
222
223qemu_arm test.py:
224 tags: [ 'all' ]
225 variables:
226 TEST_PY_BD: "qemu_arm"
227 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400228 BUILDMAN: "^qemu_arm$"
229 <<: *buildman_and_testpy_dfn
230
231qemu_arm64 test.py:
232 tags: [ 'all' ]
233 variables:
234 TEST_PY_BD: "qemu_arm64"
235 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400236 BUILDMAN: "^qemu_arm64$"
237 <<: *buildman_and_testpy_dfn
238
239qemu_mips test.py:
240 tags: [ 'all' ]
241 variables:
242 TEST_PY_BD: "qemu_mips"
243 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400244 BUILDMAN: "^qemu_mips$"
Tom Rini1a62a722019-06-19 09:25:17 -0400245 <<: *buildman_and_testpy_dfn
246
247qemu_mipsel test.py:
248 tags: [ 'all' ]
249 variables:
250 TEST_PY_BD: "qemu_mipsel"
251 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400252 BUILDMAN: "^qemu_mipsel$"
Tom Rini1a62a722019-06-19 09:25:17 -0400253 <<: *buildman_and_testpy_dfn
254
255qemu_mips64 test.py:
256 tags: [ 'all' ]
257 variables:
258 TEST_PY_BD: "qemu_mips64"
259 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400260 BUILDMAN: "^qemu_mips64$"
Tom Rini1a62a722019-06-19 09:25:17 -0400261 <<: *buildman_and_testpy_dfn
262
263qemu_mips64el test.py:
264 tags: [ 'all' ]
265 variables:
266 TEST_PY_BD: "qemu_mips64el"
267 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400268 BUILDMAN: "^qemu_mips64el$"
Tom Rini1a62a722019-06-19 09:25:17 -0400269 <<: *buildman_and_testpy_dfn
270
271qemu-ppce500 test.py:
272 tags: [ 'all' ]
273 variables:
274 TEST_PY_BD: "qemu-ppce500"
275 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400276 BUILDMAN: "^qemu-ppce500$"
Tom Rini1a62a722019-06-19 09:25:17 -0400277 <<: *buildman_and_testpy_dfn
278
Tom Rini7298d822019-08-02 11:32:37 -0400279qemu-riscv64 test.py:
280 tags: [ 'all' ]
281 variables:
282 TEST_PY_BD: "qemu-riscv64"
283 TEST_PY_TEST_SPEC: "not sleep"
284 BUILDMAN: "^qemu-riscv64$"
285 <<: *buildman_and_testpy_dfn
286
Tom Rini1a62a722019-06-19 09:25:17 -0400287qemu-x86 test.py:
288 tags: [ 'all' ]
289 variables:
290 TEST_PY_BD: "qemu-x86"
291 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400292 BUILDMAN: "^qemu-x86$"
Tom Rini1a62a722019-06-19 09:25:17 -0400293 <<: *buildman_and_testpy_dfn
294
295qemu-x86_64 test.py:
296 tags: [ 'all' ]
297 variables:
298 TEST_PY_BD: "qemu-x86_64"
299 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400300 BUILDMAN: "^qemu-x86_64$"
Tom Rini1a62a722019-06-19 09:25:17 -0400301 <<: *buildman_and_testpy_dfn
302
303zynq_zc702 test.py:
304 tags: [ 'all' ]
305 variables:
306 TEST_PY_BD: "zynq_zc702"
307 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400308 TEST_PY_ID: "--id qemu"
309 BUILDMAN: "^zynq_zc702$"
310 <<: *buildman_and_testpy_dfn
311
312xilinx_versal_virt test.py:
313 tags: [ 'all' ]
314 variables:
315 TEST_PY_BD: "xilinx_versal_virt"
316 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400317 TEST_PY_ID: "--id qemu"
318 BUILDMAN: "^xilinx_versal_virt$"
319 <<: *buildman_and_testpy_dfn
320
321xtfpga test.py:
322 tags: [ 'all' ]
323 variables:
324 TEST_PY_BD: "xtfpga"
325 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400326 TEST_PY_ID: "--id qemu"
327 BUILDMAN: "^xtfpga$"
Tom Rini1a62a722019-06-19 09:25:17 -0400328 <<: *buildman_and_testpy_dfn