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