]>
Commit | Line | Data |
---|---|---|
1a62a722 TR |
1 | # 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 | |
20bc19ab | 5 | image: trini/u-boot-gitlab-ci-runner:bionic-20200311-10Apr2020 |
1a62a722 TR |
6 | |
7 | # We run some tests in different order, to catch some failures quicker. | |
8 | stages: | |
1a62a722 | 9 | - testsuites |
b29cb058 | 10 | - test.py |
1a62a722 TR |
11 | - 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` | |
28a51234 TR |
21 | - 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 | |
24df1b14 | 23 | - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi |
a379d330 | 24 | - cp /opt/grub/grubriscv32.efi ~/grub_riscv32.efi |
24df1b14 HS |
25 | - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi |
26 | - cp /opt/grub/grubarm.efi ~/grub_arm.efi | |
49fb28a4 BM |
27 | - 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 | |
b29cb058 | 35 | |
1a62a722 | 36 | after_script: |
24df1b14 | 37 | - rm -rf /tmp/uboot-test-hooks /tmp/venv |
1a62a722 TR |
38 | script: |
39 | # From buildman, exit code 129 means warnings only. If we've been asked to | |
40 | # use clang only do one configuration. | |
4e32fed4 | 41 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD} |
5bd95d63 | 42 | - ret=0; |
4e32fed4 SG |
43 | tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E |
44 | --board ${TEST_PY_BD} ${OVERRIDE} || ret=$?; | |
5bd95d63 | 45 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
4e32fed4 SG |
46 | tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -se |
47 | --board ${TEST_PY_BD}; | |
5bd95d63 | 48 | exit $ret; |
1a62a722 | 49 | fi |
085b8978 TR |
50 | - virtualenv -p /usr/bin/python3 /tmp/venv |
51 | - . /tmp/venv/bin/activate | |
52 | - pip install -r test/py/requirements.txt | |
4080d097 | 53 | # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not |
4e32fed4 | 54 | - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH}; |
1a62a722 | 55 | export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci; |
5bd95d63 | 56 | ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} |
4080d097 | 57 | ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} |
5bd95d63 SG |
58 | --build-dir "$UBOOT_TRAVIS_BUILD_DIR"; |
59 | ret=$?; | |
60 | if [[ $ret -ne 0 ]]; then | |
61 | exit $ret; | |
62 | fi | |
1a62a722 | 63 | |
a11cb57d | 64 | build all 32bit ARM platforms: |
1a62a722 TR |
65 | tags: [ 'all' ] |
66 | stage: world build | |
67 | script: | |
68 | - ret=0; | |
4c749971 TR |
69 | ./tools/buildman/buildman -o /tmp -P -E arm -x aarch64 || ret=$?; |
70 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then | |
b52f5a19 | 71 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
72 | exit $ret; |
73 | fi; | |
9f7bda10 | 74 | |
a11cb57d | 75 | build all 64bit ARM platforms: |
9f7bda10 TR |
76 | tags: [ 'all' ] |
77 | stage: world build | |
78 | script: | |
26a426a1 | 79 | - virtualenv -p /usr/bin/python3 /tmp/venv |
f0db8395 TR |
80 | - . /tmp/venv/bin/activate |
81 | - pip install pyelftools | |
9f7bda10 | 82 | - ret=0; |
4c749971 TR |
83 | ./tools/buildman/buildman -o /tmp -P -E aarch64 || ret=$?; |
84 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then | |
b52f5a19 | 85 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
86 | exit $ret; |
87 | fi; | |
9f7bda10 | 88 | |
a11cb57d | 89 | build all PowerPC platforms: |
9f7bda10 TR |
90 | tags: [ 'all' ] |
91 | stage: world build | |
92 | script: | |
93 | - ret=0; | |
4c749971 TR |
94 | ./tools/buildman/buildman -o /tmp -P -E powerpc || ret=$?; |
95 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then | |
b52f5a19 | 96 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
97 | exit $ret; |
98 | fi; | |
9f7bda10 | 99 | |
a11cb57d | 100 | build all other platforms: |
9f7bda10 TR |
101 | tags: [ 'all' ] |
102 | stage: world build | |
103 | script: | |
104 | - ret=0; | |
4c749971 TR |
105 | ./tools/buildman/buildman -o /tmp -P -E -x arm,powerpc || ret=$?; |
106 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then | |
b52f5a19 | 107 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
108 | exit $ret; |
109 | fi; | |
1a62a722 TR |
110 | |
111 | # QA jobs for code analytics | |
112 | # static code analysis with cppcheck (we can add --enable=all later) | |
113 | cppcheck: | |
114 | tags: [ 'all' ] | |
115 | stage: testsuites | |
116 | script: | |
117 | - cppcheck --force --quiet --inline-suppr . | |
118 | ||
119 | # search for TODO within source tree | |
120 | grep TODO/FIXME/HACK: | |
121 | tags: [ 'all' ] | |
122 | stage: testsuites | |
123 | script: | |
124 | - grep -r TODO . | |
125 | - grep -r FIXME . | |
126 | # search for HACK within source tree and ignore HACKKIT board | |
127 | - grep -r HACK . | grep -v HACKKIT | |
128 | ||
3eb7b78b HS |
129 | # build HTML documentation |
130 | htmldocs: | |
131 | tags: [ 'all' ] | |
132 | stage: testsuites | |
133 | script: | |
134 | - make htmldocs | |
135 | ||
1a62a722 TR |
136 | # some statistics about the code base |
137 | sloccount: | |
138 | tags: [ 'all' ] | |
139 | stage: testsuites | |
140 | script: | |
141 | - sloccount . | |
142 | ||
143 | # ensure all configs have MAINTAINERS entries | |
144 | Check for configs without MAINTAINERS entry: | |
145 | tags: [ 'all' ] | |
146 | stage: testsuites | |
147 | script: | |
148 | - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi | |
149 | ||
150 | # Ensure host tools build | |
151 | Build tools-only: | |
152 | tags: [ 'all' ] | |
153 | stage: testsuites | |
154 | script: | |
155 | - make tools-only_config tools-only -j$(nproc) | |
156 | ||
1f3910da PJT |
157 | # Ensure env tools build |
158 | Build envtools: | |
159 | tags: [ 'all' ] | |
160 | stage: testsuites | |
161 | script: | |
162 | - make tools-only_config envtools -j$(nproc) | |
163 | ||
7261833f | 164 | Run binman, buildman, dtoc, Kconfig and patman testsuites: |
1a62a722 TR |
165 | tags: [ 'all' ] |
166 | stage: testsuites | |
167 | script: | |
d7ae9321 TR |
168 | - git config --global user.name "GitLab CI Runner"; |
169 | git config --global user.email [email protected]; | |
170 | export USER=gitlab; | |
26a426a1 | 171 | virtualenv -p /usr/bin/python3 /tmp/venv; |
d7ae9321 | 172 | . /tmp/venv/bin/activate; |
7261833f | 173 | pip install pyelftools pytest; |
bf0a8133 | 174 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl; |
d7ae9321 TR |
175 | export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; |
176 | export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; | |
bf0a8133 | 177 | ./tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w sandbox_spl; |
d7ae9321 TR |
178 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test; |
179 | ./tools/buildman/buildman -t; | |
180 | ./tools/dtoc/dtoc -t; | |
7261833f TR |
181 | ./tools/patman/patman --test; |
182 | make testconfig | |
1a62a722 TR |
183 | |
184 | # Test sandbox with test.py | |
185 | sandbox test.py: | |
186 | tags: [ 'all' ] | |
187 | variables: | |
188 | TEST_PY_BD: "sandbox" | |
1a62a722 TR |
189 | <<: *buildman_and_testpy_dfn |
190 | ||
0219d014 TR |
191 | sandbox with clang test.py: |
192 | tags: [ 'all' ] | |
193 | variables: | |
194 | TEST_PY_BD: "sandbox" | |
0219d014 TR |
195 | OVERRIDE: "-O clang-7" |
196 | <<: *buildman_and_testpy_dfn | |
197 | ||
1a62a722 TR |
198 | sandbox_spl test.py: |
199 | tags: [ 'all' ] | |
200 | variables: | |
201 | TEST_PY_BD: "sandbox_spl" | |
1a62a722 TR |
202 | TEST_PY_TEST_SPEC: "test_ofplatdata" |
203 | <<: *buildman_and_testpy_dfn | |
204 | ||
699c0b93 TR |
205 | evb-ast2500 test.py: |
206 | tags: [ 'all' ] | |
207 | variables: | |
208 | TEST_PY_BD: "evb-ast2500" | |
209 | TEST_PY_ID: "--id qemu" | |
699c0b93 TR |
210 | <<: *buildman_and_testpy_dfn |
211 | ||
1a62a722 TR |
212 | sandbox_flattree test.py: |
213 | tags: [ 'all' ] | |
214 | variables: | |
215 | TEST_PY_BD: "sandbox_flattree" | |
1a62a722 TR |
216 | <<: *buildman_and_testpy_dfn |
217 | ||
218 | vexpress_ca15_tc2 test.py: | |
219 | tags: [ 'all' ] | |
220 | variables: | |
221 | TEST_PY_BD: "vexpress_ca15_tc2" | |
222 | TEST_PY_ID: "--id qemu" | |
1a62a722 TR |
223 | <<: *buildman_and_testpy_dfn |
224 | ||
225 | vexpress_ca9x4 test.py: | |
226 | tags: [ 'all' ] | |
227 | variables: | |
228 | TEST_PY_BD: "vexpress_ca9x4" | |
229 | TEST_PY_ID: "--id qemu" | |
1a62a722 TR |
230 | <<: *buildman_and_testpy_dfn |
231 | ||
232 | integratorcp_cm926ejs test.py: | |
233 | tags: [ 'all' ] | |
234 | variables: | |
235 | TEST_PY_BD: "integratorcp_cm926ejs" | |
236 | TEST_PY_TEST_SPEC: "not sleep" | |
237 | TEST_PY_ID: "--id qemu" | |
1a62a722 TR |
238 | <<: *buildman_and_testpy_dfn |
239 | ||
240 | qemu_arm test.py: | |
241 | tags: [ 'all' ] | |
242 | variables: | |
243 | TEST_PY_BD: "qemu_arm" | |
244 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
245 | <<: *buildman_and_testpy_dfn |
246 | ||
247 | qemu_arm64 test.py: | |
248 | tags: [ 'all' ] | |
249 | variables: | |
250 | TEST_PY_BD: "qemu_arm64" | |
251 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
252 | <<: *buildman_and_testpy_dfn |
253 | ||
254 | qemu_mips test.py: | |
255 | tags: [ 'all' ] | |
256 | variables: | |
257 | TEST_PY_BD: "qemu_mips" | |
258 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
259 | <<: *buildman_and_testpy_dfn |
260 | ||
261 | qemu_mipsel test.py: | |
262 | tags: [ 'all' ] | |
263 | variables: | |
264 | TEST_PY_BD: "qemu_mipsel" | |
265 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
266 | <<: *buildman_and_testpy_dfn |
267 | ||
268 | qemu_mips64 test.py: | |
269 | tags: [ 'all' ] | |
270 | variables: | |
271 | TEST_PY_BD: "qemu_mips64" | |
272 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
273 | <<: *buildman_and_testpy_dfn |
274 | ||
275 | qemu_mips64el test.py: | |
276 | tags: [ 'all' ] | |
277 | variables: | |
278 | TEST_PY_BD: "qemu_mips64el" | |
279 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
280 | <<: *buildman_and_testpy_dfn |
281 | ||
282 | qemu-ppce500 test.py: | |
283 | tags: [ 'all' ] | |
284 | variables: | |
285 | TEST_PY_BD: "qemu-ppce500" | |
286 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
287 | <<: *buildman_and_testpy_dfn |
288 | ||
a379d330 BM |
289 | qemu-riscv32 test.py: |
290 | tags: [ 'all' ] | |
291 | variables: | |
292 | TEST_PY_BD: "qemu-riscv32" | |
293 | TEST_PY_TEST_SPEC: "not sleep" | |
a379d330 BM |
294 | <<: *buildman_and_testpy_dfn |
295 | ||
7298d82d TR |
296 | qemu-riscv64 test.py: |
297 | tags: [ 'all' ] | |
298 | variables: | |
299 | TEST_PY_BD: "qemu-riscv64" | |
300 | TEST_PY_TEST_SPEC: "not sleep" | |
49fb28a4 BM |
301 | <<: *buildman_and_testpy_dfn |
302 | ||
303 | qemu-riscv32_spl test.py: | |
304 | tags: [ 'all' ] | |
305 | variables: | |
306 | TEST_PY_BD: "qemu-riscv32_spl" | |
307 | TEST_PY_TEST_SPEC: "not sleep" | |
49fb28a4 BM |
308 | <<: *buildman_and_testpy_dfn |
309 | ||
310 | qemu-riscv64_spl test.py: | |
311 | tags: [ 'all' ] | |
312 | variables: | |
313 | TEST_PY_BD: "qemu-riscv64_spl" | |
314 | TEST_PY_TEST_SPEC: "not sleep" | |
7298d82d TR |
315 | <<: *buildman_and_testpy_dfn |
316 | ||
1a62a722 TR |
317 | qemu-x86 test.py: |
318 | tags: [ 'all' ] | |
319 | variables: | |
320 | TEST_PY_BD: "qemu-x86" | |
321 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
322 | <<: *buildman_and_testpy_dfn |
323 | ||
324 | qemu-x86_64 test.py: | |
325 | tags: [ 'all' ] | |
326 | variables: | |
327 | TEST_PY_BD: "qemu-x86_64" | |
328 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
329 | <<: *buildman_and_testpy_dfn |
330 | ||
f7c6ee7f | 331 | xilinx_zynq_virt test.py: |
1a62a722 TR |
332 | tags: [ 'all' ] |
333 | variables: | |
f7c6ee7f | 334 | TEST_PY_BD: "xilinx_zynq_virt" |
1a62a722 | 335 | TEST_PY_TEST_SPEC: "not sleep" |
1a62a722 | 336 | TEST_PY_ID: "--id qemu" |
1a62a722 TR |
337 | <<: *buildman_and_testpy_dfn |
338 | ||
339 | xilinx_versal_virt test.py: | |
340 | tags: [ 'all' ] | |
341 | variables: | |
342 | TEST_PY_BD: "xilinx_versal_virt" | |
343 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 | 344 | TEST_PY_ID: "--id qemu" |
1a62a722 TR |
345 | <<: *buildman_and_testpy_dfn |
346 | ||
347 | xtfpga test.py: | |
348 | tags: [ 'all' ] | |
349 | variables: | |
350 | TEST_PY_BD: "xtfpga" | |
351 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 | 352 | TEST_PY_ID: "--id qemu" |
1a62a722 | 353 | <<: *buildman_and_testpy_dfn |