Commit | Line | Data |
---|---|---|
1a62a722 TR |
1 | # SPDX-License-Identifier: GPL-2.0+ |
2 | ||
cb735173 JS |
3 | # Grab our configured image. The source for this is found |
4 | # in the u-boot tree at tools/docker/Dockerfile | |
16bf3b6f | 5 | image: trini/u-boot-gitlab-ci-runner:jammy-20230126-10Feb2023 |
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 | |
1a62a722 TR |
14 | stage: test.py |
15 | before_script: | |
16 | # Clone uboot-test-hooks | |
bd181a24 | 17 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
85ae52b9 | 18 | - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks |
1a62a722 TR |
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 | |
49fb28a4 | 23 | - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then |
b6b35fd2 HS |
24 | wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ; |
25 | export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin; | |
49fb28a4 | 26 | fi |
0e60b3a7 | 27 | - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then |
b6b35fd2 HS |
28 | wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ; |
29 | export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin; | |
49fb28a4 | 30 | fi |
b29cb058 | 31 | |
1a62a722 | 32 | after_script: |
24df1b14 | 33 | - rm -rf /tmp/uboot-test-hooks /tmp/venv |
1a62a722 | 34 | script: |
dd5c954e | 35 | # If we've been asked to use clang only do one configuration. |
4e32fed4 | 36 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD} |
1aa168ca | 37 | - echo BUILD_ENV ${BUILD_ENV} |
9cea4797 SG |
38 | - if [ -n "${BUILD_ENV}" ]; then |
39 | export ${BUILD_ENV}; | |
40 | fi | |
7ec1255c SG |
41 | - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e |
42 | --board ${TEST_PY_BD} ${OVERRIDE} | |
82560ae2 HS |
43 | - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/ |
44 | - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/ | |
45 | - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi | |
82560ae2 HS |
46 | - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi |
47 | - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi | |
0e60b3a7 BM |
48 | # create sdcard / spi-nor images for sifive unleashed using genimage |
49 | - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then | |
50 | mkdir -p root; | |
51 | cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .; | |
52 | cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .; | |
53 | rm -rf tmp; | |
54 | genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg; | |
55 | cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/; | |
56 | rm -rf tmp; | |
57 | genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg; | |
58 | cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/; | |
59 | fi | |
bfb2a7fb SG |
60 | - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then |
61 | wget -O - | |
62 | "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" | | |
63 | xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom; | |
64 | wget -O - | |
65 | "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" > | |
66 | cbfstool; | |
67 | chmod a+x cbfstool; | |
68 | ./cbfstool ${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom add-flat-binary -f ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.bin -n fallback/payload -c LZMA -l 0x1110000 -e 0x1110000; | |
69 | fi | |
085b8978 TR |
70 | - virtualenv -p /usr/bin/python3 /tmp/venv |
71 | - . /tmp/venv/bin/activate | |
72 | - pip install -r test/py/requirements.txt | |
4080d097 | 73 | # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not |
4e32fed4 | 74 | - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH}; |
1a62a722 | 75 | export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci; |
f3092473 | 76 | ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID} |
4080d097 | 77 | ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} |
cec1e856 | 78 | --build-dir "$UBOOT_TRAVIS_BUILD_DIR" |
bfb2a7fb SG |
79 | # It seems that the files in /tmp go away, so copy out what we need |
80 | - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then | |
81 | cp -v /tmp/coreboot/*.{html,css} .; | |
82 | fi | |
1a62a722 | 83 | |
a11cb57d | 84 | build all 32bit ARM platforms: |
1a62a722 TR |
85 | stage: world build |
86 | script: | |
87 | - ret=0; | |
bd181a24 | 88 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
d7713ad3 | 89 | ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?; |
dd5c954e | 90 | if [[ $ret -ne 0 ]]; then |
b52f5a19 | 91 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
92 | exit $ret; |
93 | fi; | |
9f7bda10 | 94 | |
a11cb57d | 95 | build all 64bit ARM platforms: |
9f7bda10 TR |
96 | stage: world build |
97 | script: | |
26a426a1 | 98 | - virtualenv -p /usr/bin/python3 /tmp/venv |
f0db8395 | 99 | - . /tmp/venv/bin/activate |
9f7bda10 | 100 | - ret=0; |
bd181a24 | 101 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
d7713ad3 | 102 | ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?; |
dd5c954e | 103 | if [[ $ret -ne 0 ]]; then |
b52f5a19 | 104 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
105 | exit $ret; |
106 | fi; | |
9f7bda10 | 107 | |
a11cb57d | 108 | build all PowerPC platforms: |
9f7bda10 TR |
109 | stage: world build |
110 | script: | |
111 | - ret=0; | |
bd181a24 | 112 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
dd5c954e SG |
113 | ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?; |
114 | if [[ $ret -ne 0 ]]; then | |
b52f5a19 | 115 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
116 | exit $ret; |
117 | fi; | |
9f7bda10 | 118 | |
a11cb57d | 119 | build all other platforms: |
9f7bda10 TR |
120 | stage: world build |
121 | script: | |
122 | - ret=0; | |
bd181a24 | 123 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
d7713ad3 | 124 | ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?; |
dd5c954e | 125 | if [[ $ret -ne 0 ]]; then |
b52f5a19 | 126 | ./tools/buildman/buildman -o /tmp -seP; |
4c749971 TR |
127 | exit $ret; |
128 | fi; | |
1a62a722 | 129 | |
bb9b9c1e | 130 | check for new CONFIG symbols outside Kconfig: |
c1a7de57 TR |
131 | stage: testsuites |
132 | script: | |
bb9b9c1e TR |
133 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
134 | # If grep succeeds and finds a match the test fails as we should | |
135 | # have no matches. | |
136 | - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_' | |
a03efb6f TR |
137 | :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h |
138 | :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0 | |
c1a7de57 | 139 | |
1a62a722 TR |
140 | # QA jobs for code analytics |
141 | # static code analysis with cppcheck (we can add --enable=all later) | |
142 | cppcheck: | |
1a62a722 TR |
143 | stage: testsuites |
144 | script: | |
4ee7f527 | 145 | - cppcheck -j$(nproc) --force --quiet --inline-suppr . |
1a62a722 TR |
146 | |
147 | # search for TODO within source tree | |
148 | grep TODO/FIXME/HACK: | |
1a62a722 TR |
149 | stage: testsuites |
150 | script: | |
151 | - grep -r TODO . | |
152 | - grep -r FIXME . | |
153 | # search for HACK within source tree and ignore HACKKIT board | |
154 | - grep -r HACK . | grep -v HACKKIT | |
155 | ||
e9cc7029 HS |
156 | # build documentation |
157 | docs: | |
3eb7b78b HS |
158 | stage: testsuites |
159 | script: | |
836049d6 HS |
160 | - virtualenv -p /usr/bin/python3 /tmp/venvhtml |
161 | - . /tmp/venvhtml/bin/activate | |
162 | - pip install -r doc/sphinx/requirements.txt | |
3eb7b78b | 163 | - make htmldocs |
e9cc7029 | 164 | - make infodocs |
3eb7b78b | 165 | |
1a62a722 TR |
166 | # some statistics about the code base |
167 | sloccount: | |
1a62a722 TR |
168 | stage: testsuites |
169 | script: | |
170 | - sloccount . | |
171 | ||
172 | # ensure all configs have MAINTAINERS entries | |
173 | Check for configs without MAINTAINERS entry: | |
1a62a722 TR |
174 | stage: testsuites |
175 | script: | |
7ae8a527 | 176 | - ./tools/buildman/buildman -R |
1a62a722 TR |
177 | |
178 | # Ensure host tools build | |
179 | Build tools-only: | |
1a62a722 TR |
180 | stage: testsuites |
181 | script: | |
182 | - make tools-only_config tools-only -j$(nproc) | |
183 | ||
1f3910da PJT |
184 | # Ensure env tools build |
185 | Build envtools: | |
1f3910da PJT |
186 | stage: testsuites |
187 | script: | |
188 | - make tools-only_config envtools -j$(nproc) | |
189 | ||
7261833f | 190 | Run binman, buildman, dtoc, Kconfig and patman testsuites: |
1a62a722 TR |
191 | stage: testsuites |
192 | script: | |
d7ae9321 TR |
193 | - git config --global user.name "GitLab CI Runner"; |
194 | git config --global user.email trini@konsulko.com; | |
b6d4e085 | 195 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
d7ae9321 | 196 | export USER=gitlab; |
26a426a1 | 197 | virtualenv -p /usr/bin/python3 /tmp/venv; |
d7ae9321 | 198 | . /tmp/venv/bin/activate; |
38229b55 | 199 | pip install -r test/py/requirements.txt; |
bf0a8133 | 200 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl; |
d7ae9321 TR |
201 | export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; |
202 | export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; | |
b6d4e085 | 203 | set +e; |
6c914e42 SG |
204 | ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w |
205 | --board sandbox_spl; | |
b6d4e085 | 206 | set -e; |
d7ae9321 TR |
207 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test; |
208 | ./tools/buildman/buildman -t; | |
209 | ./tools/dtoc/dtoc -t; | |
6bb74de7 | 210 | ./tools/patman/patman test; |
7261833f | 211 | make testconfig |
1a62a722 | 212 | |
6cfd09d4 | 213 | Run tests for Nokia RX-51 (aka N900): |
6cfd09d4 T |
214 | stage: testsuites |
215 | script: | |
09ed7e62 | 216 | - export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH; |
6cfd09d4 T |
217 | test/nokia_rx51_test.sh |
218 | ||
642e51ad SG |
219 | # Check for any pylint regressions |
220 | Run pylint: | |
221 | stage: testsuites | |
222 | script: | |
b6d4e085 | 223 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
642e51ad | 224 | - pip install -r test/py/requirements.txt |
e47bbf7e | 225 | - pip install asteval pylint==2.12.2 pyopenssl |
642e51ad SG |
226 | - export PATH=${PATH}:~/.local/bin |
227 | - echo "[MASTER]" >> .pylintrc | |
228 | - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc | |
229 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl | |
b6d4e085 | 230 | - set +e |
642e51ad SG |
231 | - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w |
232 | --board sandbox_spl | |
b6d4e085 | 233 | - set -e |
642e51ad SG |
234 | - pylint --version |
235 | - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt" | |
236 | - make pylint_err | |
237 | ||
1a62a722 TR |
238 | # Test sandbox with test.py |
239 | sandbox test.py: | |
1a62a722 TR |
240 | variables: |
241 | TEST_PY_BD: "sandbox" | |
1a62a722 TR |
242 | <<: *buildman_and_testpy_dfn |
243 | ||
0219d014 | 244 | sandbox with clang test.py: |
0219d014 TR |
245 | variables: |
246 | TEST_PY_BD: "sandbox" | |
09ed7e62 | 247 | OVERRIDE: "-O clang-14" |
0219d014 TR |
248 | <<: *buildman_and_testpy_dfn |
249 | ||
1aa168ca SG |
250 | sandbox without LTO test.py: |
251 | variables: | |
252 | TEST_PY_BD: "sandbox" | |
253 | BUILD_ENV: "NO_LTO=1" | |
254 | <<: *buildman_and_testpy_dfn | |
255 | ||
1a62a722 | 256 | sandbox_spl test.py: |
1a62a722 TR |
257 | variables: |
258 | TEST_PY_BD: "sandbox_spl" | |
afb26ba9 | 259 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
1a62a722 TR |
260 | <<: *buildman_and_testpy_dfn |
261 | ||
6c914e42 | 262 | sandbox_noinst_test.py: |
6c914e42 SG |
263 | variables: |
264 | TEST_PY_BD: "sandbox_noinst" | |
265 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" | |
266 | <<: *buildman_and_testpy_dfn | |
267 | ||
a31eff30 SG |
268 | sandbox_vpl test.py: |
269 | variables: | |
270 | TEST_PY_BD: "sandbox_vpl" | |
271 | TEST_PY_TEST_SPEC: "test_vpl_help or test_spl" | |
272 | <<: *buildman_and_testpy_dfn | |
9cea4797 SG |
273 | |
274 | # Enable tracing and disable LTO, to ensure functions are not elided | |
275 | sandbox trace_test.py: | |
276 | variables: | |
277 | TEST_PY_BD: "sandbox" | |
278 | BUILD_ENV: "FTRACE=1 NO_LTO=1" | |
279 | TEST_PY_TEST_SPEC: "trace" | |
280 | OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000" | |
281 | <<: *buildman_and_testpy_dfn | |
a31eff30 | 282 | |
699c0b93 | 283 | evb-ast2500 test.py: |
699c0b93 TR |
284 | variables: |
285 | TEST_PY_BD: "evb-ast2500" | |
286 | TEST_PY_ID: "--id qemu" | |
699c0b93 TR |
287 | <<: *buildman_and_testpy_dfn |
288 | ||
b24087ae JS |
289 | evb-ast2600 test.py: |
290 | variables: | |
291 | TEST_PY_BD: "evb-ast2600" | |
292 | TEST_PY_ID: "--id qemu" | |
293 | <<: *buildman_and_testpy_dfn | |
294 | ||
1a62a722 | 295 | sandbox_flattree test.py: |
1a62a722 TR |
296 | variables: |
297 | TEST_PY_BD: "sandbox_flattree" | |
1a62a722 TR |
298 | <<: *buildman_and_testpy_dfn |
299 | ||
15e30106 KA |
300 | vexpress_ca9x4 test.py: |
301 | variables: | |
302 | TEST_PY_BD: "vexpress_ca9x4" | |
303 | TEST_PY_ID: "--id qemu" | |
304 | <<: *buildman_and_testpy_dfn | |
305 | ||
1a62a722 | 306 | integratorcp_cm926ejs test.py: |
1a62a722 TR |
307 | variables: |
308 | TEST_PY_BD: "integratorcp_cm926ejs" | |
309 | TEST_PY_TEST_SPEC: "not sleep" | |
310 | TEST_PY_ID: "--id qemu" | |
1a62a722 TR |
311 | <<: *buildman_and_testpy_dfn |
312 | ||
313 | qemu_arm test.py: | |
1a62a722 TR |
314 | variables: |
315 | TEST_PY_BD: "qemu_arm" | |
316 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
317 | <<: *buildman_and_testpy_dfn |
318 | ||
319 | qemu_arm64 test.py: | |
1a62a722 TR |
320 | variables: |
321 | TEST_PY_BD: "qemu_arm64" | |
322 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
323 | <<: *buildman_and_testpy_dfn |
324 | ||
d8533167 | 325 | qemu_malta test.py: |
d8533167 DS |
326 | variables: |
327 | TEST_PY_BD: "malta" | |
328 | TEST_PY_TEST_SPEC: "not sleep and not efi" | |
329 | TEST_PY_ID: "--id qemu" | |
330 | <<: *buildman_and_testpy_dfn | |
331 | ||
332 | qemu_maltael test.py: | |
d8533167 DS |
333 | variables: |
334 | TEST_PY_BD: "maltael" | |
335 | TEST_PY_TEST_SPEC: "not sleep and not efi" | |
336 | TEST_PY_ID: "--id qemu" | |
337 | <<: *buildman_and_testpy_dfn | |
338 | ||
339 | qemu_malta64 test.py: | |
d8533167 DS |
340 | variables: |
341 | TEST_PY_BD: "malta64" | |
342 | TEST_PY_TEST_SPEC: "not sleep and not efi" | |
343 | TEST_PY_ID: "--id qemu" | |
344 | <<: *buildman_and_testpy_dfn | |
345 | ||
346 | qemu_malta64el test.py: | |
d8533167 DS |
347 | variables: |
348 | TEST_PY_BD: "malta64el" | |
349 | TEST_PY_TEST_SPEC: "not sleep and not efi" | |
350 | TEST_PY_ID: "--id qemu" | |
351 | <<: *buildman_and_testpy_dfn | |
352 | ||
1a62a722 | 353 | qemu-ppce500 test.py: |
1a62a722 TR |
354 | variables: |
355 | TEST_PY_BD: "qemu-ppce500" | |
356 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
357 | <<: *buildman_and_testpy_dfn |
358 | ||
a379d330 | 359 | qemu-riscv32 test.py: |
a379d330 BM |
360 | variables: |
361 | TEST_PY_BD: "qemu-riscv32" | |
362 | TEST_PY_TEST_SPEC: "not sleep" | |
a379d330 BM |
363 | <<: *buildman_and_testpy_dfn |
364 | ||
7298d82d | 365 | qemu-riscv64 test.py: |
7298d82d TR |
366 | variables: |
367 | TEST_PY_BD: "qemu-riscv64" | |
368 | TEST_PY_TEST_SPEC: "not sleep" | |
49fb28a4 BM |
369 | <<: *buildman_and_testpy_dfn |
370 | ||
371 | qemu-riscv32_spl test.py: | |
49fb28a4 BM |
372 | variables: |
373 | TEST_PY_BD: "qemu-riscv32_spl" | |
374 | TEST_PY_TEST_SPEC: "not sleep" | |
49fb28a4 BM |
375 | <<: *buildman_and_testpy_dfn |
376 | ||
377 | qemu-riscv64_spl test.py: | |
49fb28a4 BM |
378 | variables: |
379 | TEST_PY_BD: "qemu-riscv64_spl" | |
380 | TEST_PY_TEST_SPEC: "not sleep" | |
7298d82d TR |
381 | <<: *buildman_and_testpy_dfn |
382 | ||
1a62a722 | 383 | qemu-x86 test.py: |
1a62a722 TR |
384 | variables: |
385 | TEST_PY_BD: "qemu-x86" | |
386 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
387 | <<: *buildman_and_testpy_dfn |
388 | ||
389 | qemu-x86_64 test.py: | |
1a62a722 TR |
390 | variables: |
391 | TEST_PY_BD: "qemu-x86_64" | |
392 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 TR |
393 | <<: *buildman_and_testpy_dfn |
394 | ||
0e125756 | 395 | r2dplus_i82557c test.py: |
0e125756 MV |
396 | variables: |
397 | TEST_PY_BD: "r2dplus" | |
398 | TEST_PY_ID: "--id i82557c_qemu" | |
399 | <<: *buildman_and_testpy_dfn | |
400 | ||
401 | r2dplus_pcnet test.py: | |
0e125756 MV |
402 | variables: |
403 | TEST_PY_BD: "r2dplus" | |
404 | TEST_PY_ID: "--id pcnet_qemu" | |
405 | <<: *buildman_and_testpy_dfn | |
406 | ||
407 | r2dplus_rtl8139 test.py: | |
0e125756 MV |
408 | variables: |
409 | TEST_PY_BD: "r2dplus" | |
410 | TEST_PY_ID: "--id rtl8139_qemu" | |
411 | <<: *buildman_and_testpy_dfn | |
412 | ||
413 | r2dplus_tulip test.py: | |
0e125756 MV |
414 | variables: |
415 | TEST_PY_BD: "r2dplus" | |
416 | TEST_PY_ID: "--id tulip_qemu" | |
417 | <<: *buildman_and_testpy_dfn | |
418 | ||
0e60b3a7 BM |
419 | sifive_unleashed_sdcard test.py: |
420 | variables: | |
421 | TEST_PY_BD: "sifive_unleashed" | |
422 | TEST_PY_ID: "--id sdcard_qemu" | |
423 | <<: *buildman_and_testpy_dfn | |
424 | ||
425 | sifive_unleashed_spi-nor test.py: | |
426 | variables: | |
427 | TEST_PY_BD: "sifive_unleashed" | |
428 | TEST_PY_ID: "--id spi-nor_qemu" | |
429 | <<: *buildman_and_testpy_dfn | |
430 | ||
f7c6ee7f | 431 | xilinx_zynq_virt test.py: |
1a62a722 | 432 | variables: |
f7c6ee7f | 433 | TEST_PY_BD: "xilinx_zynq_virt" |
1a62a722 | 434 | TEST_PY_TEST_SPEC: "not sleep" |
1a62a722 | 435 | TEST_PY_ID: "--id qemu" |
1a62a722 TR |
436 | <<: *buildman_and_testpy_dfn |
437 | ||
438 | xilinx_versal_virt test.py: | |
1a62a722 TR |
439 | variables: |
440 | TEST_PY_BD: "xilinx_versal_virt" | |
441 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 | 442 | TEST_PY_ID: "--id qemu" |
1a62a722 TR |
443 | <<: *buildman_and_testpy_dfn |
444 | ||
445 | xtfpga test.py: | |
1a62a722 TR |
446 | variables: |
447 | TEST_PY_BD: "xtfpga" | |
448 | TEST_PY_TEST_SPEC: "not sleep" | |
1a62a722 | 449 | TEST_PY_ID: "--id qemu" |
1a62a722 | 450 | <<: *buildman_and_testpy_dfn |
bfb2a7fb SG |
451 | |
452 | coreboot test.py: | |
453 | variables: | |
454 | TEST_PY_BD: "coreboot" | |
455 | TEST_PY_TEST_SPEC: "not sleep" | |
456 | TEST_PY_ID: "--id qemu" | |
457 | artifacts: | |
458 | paths: | |
459 | - "*.html" | |
460 | - "*.css" | |
461 | expire_in: 1 week | |
462 | <<: *buildman_and_testpy_dfn |