blob: 6f4c34fc4a3fa86079cd2bd8da2d6bf2c13c4705 [file] [log] [blame]
Tom Rini1a62a722019-06-19 09:25:17 -04001# SPDX-License-Identifier: GPL-2.0+
2
Joel Stanleycb735172022-08-23 16:18:26 +10003# Grab our configured image. The source for this is found
4# in the u-boot tree at tools/docker/Dockerfile
Tom Rini17196e42022-10-17 11:10:32 -04005image: trini/u-boot-gitlab-ci-runner:jammy-20221003-17Oct2022
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
Tom Rini1a62a722019-06-19 09:25:17 -040014 stage: test.py
15 before_script:
16 # Clone uboot-test-hooks
Tom Rini85ae52b2021-02-24 17:05:04 -050017 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Tom Rini1a62a722019-06-19 09:25:17 -040018 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
19 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Tom Rini28a51232019-10-04 12:12:54 -040020 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
21 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
Bin Meng49fb28a2020-03-28 07:25:29 -070022 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +020023 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
24 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -070025 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +080026 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +020027 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
28 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -070029 fi
Tom Rinib29cb052019-07-24 13:09:31 -040030
Tom Rini1a62a722019-06-19 09:25:17 -040031 after_script:
Heinrich Schuchardt24df1b12019-12-19 13:30:32 +010032 - rm -rf /tmp/uboot-test-hooks /tmp/venv
Tom Rini1a62a722019-06-19 09:25:17 -040033 script:
Simon Glassdd5c9542020-03-18 09:42:57 -060034 # If we've been asked to use clang only do one configuration.
Simon Glass4e32fed2020-03-18 09:42:55 -060035 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
Simon Glass1aa168c2022-08-03 12:13:09 -060036 - echo BUILD_ENV ${BUILD_ENV}
Simon Glass7ec12552020-03-18 09:43:00 -060037 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
38 --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt82560ae2020-07-14 00:23:58 +020039 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
40 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
41 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
Heinrich Schuchardt82560ae2020-07-14 00:23:58 +020042 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
43 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +080044 # create sdcard / spi-nor images for sifive unleashed using genimage
45 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
46 mkdir -p root;
47 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
48 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
49 rm -rf tmp;
50 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
51 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
52 rm -rf tmp;
53 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
54 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
55 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -070056 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
57 wget -O -
58 "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |
59 xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
60 wget -O -
61 "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >
62 cbfstool;
63 chmod a+x cbfstool;
64 ./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;
65 fi
Tom Rini085b8972019-10-24 11:59:27 -040066 - virtualenv -p /usr/bin/python3 /tmp/venv
67 - . /tmp/venv/bin/activate
68 - pip install -r test/py/requirements.txt
Simon Glass4080d092020-03-18 09:42:56 -060069 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Simon Glass4e32fed2020-03-18 09:42:55 -060070 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Tom Rini1a62a722019-06-19 09:25:17 -040071 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Heinrich Schuchardtf3092472020-07-10 22:04:40 +020072 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
Simon Glass4080d092020-03-18 09:42:56 -060073 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
Simon Glasscec1e852020-03-18 09:42:59 -060074 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
Simon Glassbfb2a7f2022-01-21 10:23:01 -070075 # It seems that the files in /tmp go away, so copy out what we need
76 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
77 cp -v /tmp/coreboot/*.{html,css} .;
78 fi
Tom Rini1a62a722019-06-19 09:25:17 -040079
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020080build all 32bit ARM platforms:
Tom Rini1a62a722019-06-19 09:25:17 -040081 stage: world build
82 script:
83 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -060084 ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
85 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -060086 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -040087 exit $ret;
88 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -040089
Heinrich Schuchardta11cb572019-10-06 12:26:16 +020090build all 64bit ARM platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -040091 stage: world build
92 script:
Tom Rini26a426a2020-02-11 12:41:14 -050093 - virtualenv -p /usr/bin/python3 /tmp/venv
Tom Rinif0db8392019-07-18 07:28:36 -040094 - . /tmp/venv/bin/activate
Tom Rini9f7bda12019-07-17 17:51:28 -040095 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -060096 ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
97 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -060098 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -040099 exit $ret;
100 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -0400101
Heinrich Schuchardta11cb572019-10-06 12:26:16 +0200102build all PowerPC platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -0400103 stage: world build
104 script:
105 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -0600106 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
107 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600108 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -0400109 exit $ret;
110 fi;
Tom Rini9f7bda12019-07-17 17:51:28 -0400111
Heinrich Schuchardta11cb572019-10-06 12:26:16 +0200112build all other platforms:
Tom Rini9f7bda12019-07-17 17:51:28 -0400113 stage: world build
114 script:
115 - ret=0;
Simon Glassdd5c9542020-03-18 09:42:57 -0600116 ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
117 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600118 ./tools/buildman/buildman -o /tmp -seP;
Tom Rini4c749972019-10-24 11:59:16 -0400119 exit $ret;
120 fi;
Tom Rini1a62a722019-06-19 09:25:17 -0400121
Tom Rinic1a7de52021-12-14 13:36:41 -0500122check for migrated symbols in board header:
123 stage: testsuites
124 script:
125 - KSYMLST=`mktemp`;
126 KUSEDLST=`mktemp`;
Tom Rini239fe552022-04-11 13:20:00 -0400127 RET=0;
Tom Rinic1a7de52021-12-14 13:36:41 -0500128 cat `find . -name "Kconfig*"` |
129 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
130 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
131 | sort -u > $KSYMLST;
132 for CFG in `find include/configs -name "*.h"`; do
Tom Rini694943c2022-03-21 21:33:28 -0400133 (grep '#define[[:blank:]]CONFIG_' $CFG |
134 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ;
135 grep '#undef[[:blank:]]CONFIG_' $CFG |
136 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') |
Tom Rinic1a7de52021-12-14 13:36:41 -0500137 sort -u > ${KUSEDLST} || true;
Tom Rini576eac82022-03-11 07:12:45 -0500138 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} |
Tom Rinic1a7de52021-12-14 13:36:41 -0500139 cut -d , -f 3`;
140 if [[ $NUM -ne 0 ]]; then
Tom Rini239fe552022-04-11 13:20:00 -0400141 echo "Unmigrated symbols found in $CFG:";
142 comm -12 ${KSYMLST} ${KUSEDLST};
143 RET=1;
Tom Rinic1a7de52021-12-14 13:36:41 -0500144 fi;
Tom Rini239fe552022-04-11 13:20:00 -0400145 done;
146 exit $RET
Tom Rinic1a7de52021-12-14 13:36:41 -0500147
Tom Rini1a62a722019-06-19 09:25:17 -0400148# QA jobs for code analytics
149# static code analysis with cppcheck (we can add --enable=all later)
150cppcheck:
Tom Rini1a62a722019-06-19 09:25:17 -0400151 stage: testsuites
152 script:
Simon Glass4ee7f522020-04-05 14:35:43 -0600153 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
Tom Rini1a62a722019-06-19 09:25:17 -0400154
155# search for TODO within source tree
156grep TODO/FIXME/HACK:
Tom Rini1a62a722019-06-19 09:25:17 -0400157 stage: testsuites
158 script:
159 - grep -r TODO .
160 - grep -r FIXME .
161 # search for HACK within source tree and ignore HACKKIT board
162 - grep -r HACK . | grep -v HACKKIT
163
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100164# build HTML documentation
165htmldocs:
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100166 stage: testsuites
167 script:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100168 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
169 - . /tmp/venvhtml/bin/activate
170 - pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt3eb7b782020-02-21 18:24:01 +0100171 - make htmldocs
172
Tom Rini1a62a722019-06-19 09:25:17 -0400173# some statistics about the code base
174sloccount:
Tom Rini1a62a722019-06-19 09:25:17 -0400175 stage: testsuites
176 script:
177 - sloccount .
178
179# ensure all configs have MAINTAINERS entries
180Check for configs without MAINTAINERS entry:
Tom Rini1a62a722019-06-19 09:25:17 -0400181 stage: testsuites
182 script:
Simon Glass7ae8a522022-07-11 19:04:09 -0600183 - ./tools/buildman/buildman -R
Tom Rini1a62a722019-06-19 09:25:17 -0400184
185# Ensure host tools build
186Build tools-only:
Tom Rini1a62a722019-06-19 09:25:17 -0400187 stage: testsuites
188 script:
189 - make tools-only_config tools-only -j$(nproc)
190
Pierre-Jean Texier1f3910d2019-08-26 13:06:18 +0200191# Ensure env tools build
192Build envtools:
Pierre-Jean Texier1f3910d2019-08-26 13:06:18 +0200193 stage: testsuites
194 script:
195 - make tools-only_config envtools -j$(nproc)
196
Tom Rini72618332020-03-11 18:11:15 -0400197Run binman, buildman, dtoc, Kconfig and patman testsuites:
Tom Rini1a62a722019-06-19 09:25:17 -0400198 stage: testsuites
199 script:
Tom Rinid7ae9322019-08-12 10:09:08 -0400200 - git config --global user.name "GitLab CI Runner";
201 git config --global user.email trini@konsulko.com;
Tom Rinib6d4e082022-08-09 21:08:54 -0400202 git config --global --add safe.directory "${CI_PROJECT_DIR}";
Tom Rinid7ae9322019-08-12 10:09:08 -0400203 export USER=gitlab;
Tom Rini26a426a2020-02-11 12:41:14 -0500204 virtualenv -p /usr/bin/python3 /tmp/venv;
Tom Rinid7ae9322019-08-12 10:09:08 -0400205 . /tmp/venv/bin/activate;
Tom Rini38229b52021-02-26 07:52:29 -0500206 pip install -r test/py/requirements.txt;
Simon Glassbf0a8132020-03-18 09:42:50 -0600207 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
Tom Rinid7ae9322019-08-12 10:09:08 -0400208 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
209 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
Tom Rinib6d4e082022-08-09 21:08:54 -0400210 set +e;
Simon Glass6c914e42021-03-15 17:25:34 +1300211 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
212 --board sandbox_spl;
Tom Rinib6d4e082022-08-09 21:08:54 -0400213 set -e;
Tom Rinid7ae9322019-08-12 10:09:08 -0400214 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
215 ./tools/buildman/buildman -t;
216 ./tools/dtoc/dtoc -t;
Simon Glass6bb74de2020-07-05 21:41:55 -0600217 ./tools/patman/patman test;
Tom Rini72618332020-03-11 18:11:15 -0400218 make testconfig
Tom Rini1a62a722019-06-19 09:25:17 -0400219
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200220Run tests for Nokia RX-51 (aka N900):
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200221 stage: testsuites
222 script:
Tom Rinie2d6a772021-10-14 22:21:29 -0400223 - export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH;
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200224 test/nokia_rx51_test.sh
225
Simon Glass642e51a2022-02-11 13:23:26 -0700226# Check for any pylint regressions
227Run pylint:
228 stage: testsuites
229 script:
Tom Rinib6d4e082022-08-09 21:08:54 -0400230 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
Simon Glass642e51a2022-02-11 13:23:26 -0700231 - pip install -r test/py/requirements.txt
Tom Rinie47bbf72022-03-25 08:19:09 -0400232 - pip install asteval pylint==2.12.2 pyopenssl
Simon Glass642e51a2022-02-11 13:23:26 -0700233 - export PATH=${PATH}:~/.local/bin
234 - echo "[MASTER]" >> .pylintrc
235 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
236 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400237 - set +e
Simon Glass642e51a2022-02-11 13:23:26 -0700238 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
239 --board sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400240 - set -e
Simon Glass642e51a2022-02-11 13:23:26 -0700241 - pylint --version
242 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
243 - make pylint_err
244
Tom Rini1a62a722019-06-19 09:25:17 -0400245# Test sandbox with test.py
246sandbox test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400247 variables:
248 TEST_PY_BD: "sandbox"
Tom Rini1a62a722019-06-19 09:25:17 -0400249 <<: *buildman_and_testpy_dfn
250
Tom Rini0219d012019-11-06 19:30:47 -0500251sandbox with clang test.py:
Tom Rini0219d012019-11-06 19:30:47 -0500252 variables:
253 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400254 OVERRIDE: "-O clang-13"
Tom Rini0219d012019-11-06 19:30:47 -0500255 <<: *buildman_and_testpy_dfn
256
Simon Glass1aa168c2022-08-03 12:13:09 -0600257sandbox without LTO test.py:
258 variables:
259 TEST_PY_BD: "sandbox"
260 BUILD_ENV: "NO_LTO=1"
261 <<: *buildman_and_testpy_dfn
262
Tom Rini1a62a722019-06-19 09:25:17 -0400263sandbox_spl test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400264 variables:
265 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600266 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Tom Rini1a62a722019-06-19 09:25:17 -0400267 <<: *buildman_and_testpy_dfn
268
Simon Glass6c914e42021-03-15 17:25:34 +1300269sandbox_noinst_test.py:
Simon Glass6c914e42021-03-15 17:25:34 +1300270 variables:
271 TEST_PY_BD: "sandbox_noinst"
272 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
273 <<: *buildman_and_testpy_dfn
274
Simon Glassa31eff32022-04-30 00:56:57 -0600275sandbox_vpl test.py:
276 variables:
277 TEST_PY_BD: "sandbox_vpl"
278 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
279 <<: *buildman_and_testpy_dfn
280
Tom Rini699c0b92019-07-17 16:06:57 -0400281evb-ast2500 test.py:
Tom Rini699c0b92019-07-17 16:06:57 -0400282 variables:
283 TEST_PY_BD: "evb-ast2500"
284 TEST_PY_ID: "--id qemu"
Tom Rini699c0b92019-07-17 16:06:57 -0400285 <<: *buildman_and_testpy_dfn
286
Joel Stanleyb24087a2022-06-29 16:35:25 +0930287evb-ast2600 test.py:
288 variables:
289 TEST_PY_BD: "evb-ast2600"
290 TEST_PY_ID: "--id qemu"
291 <<: *buildman_and_testpy_dfn
292
Tom Rini1a62a722019-06-19 09:25:17 -0400293sandbox_flattree test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400294 variables:
295 TEST_PY_BD: "sandbox_flattree"
Tom Rini1a62a722019-06-19 09:25:17 -0400296 <<: *buildman_and_testpy_dfn
297
Kristian Amlie15e30102021-09-07 08:37:51 +0200298vexpress_ca9x4 test.py:
299 variables:
300 TEST_PY_BD: "vexpress_ca9x4"
301 TEST_PY_ID: "--id qemu"
302 <<: *buildman_and_testpy_dfn
303
Tom Rini1a62a722019-06-19 09:25:17 -0400304integratorcp_cm926ejs test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400305 variables:
306 TEST_PY_BD: "integratorcp_cm926ejs"
307 TEST_PY_TEST_SPEC: "not sleep"
308 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400309 <<: *buildman_and_testpy_dfn
310
311qemu_arm test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400312 variables:
313 TEST_PY_BD: "qemu_arm"
314 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400315 <<: *buildman_and_testpy_dfn
316
317qemu_arm64 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400318 variables:
319 TEST_PY_BD: "qemu_arm64"
320 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400321 <<: *buildman_and_testpy_dfn
322
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200323qemu_malta test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200324 variables:
325 TEST_PY_BD: "malta"
326 TEST_PY_TEST_SPEC: "not sleep and not efi"
327 TEST_PY_ID: "--id qemu"
328 <<: *buildman_and_testpy_dfn
329
330qemu_maltael test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200331 variables:
332 TEST_PY_BD: "maltael"
333 TEST_PY_TEST_SPEC: "not sleep and not efi"
334 TEST_PY_ID: "--id qemu"
335 <<: *buildman_and_testpy_dfn
336
337qemu_malta64 test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200338 variables:
339 TEST_PY_BD: "malta64"
340 TEST_PY_TEST_SPEC: "not sleep and not efi"
341 TEST_PY_ID: "--id qemu"
342 <<: *buildman_and_testpy_dfn
343
344qemu_malta64el test.py:
Daniel Schwierzeckd8533162020-06-06 22:21:47 +0200345 variables:
346 TEST_PY_BD: "malta64el"
347 TEST_PY_TEST_SPEC: "not sleep and not efi"
348 TEST_PY_ID: "--id qemu"
349 <<: *buildman_and_testpy_dfn
350
Tom Rini1a62a722019-06-19 09:25:17 -0400351qemu-ppce500 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400352 variables:
353 TEST_PY_BD: "qemu-ppce500"
354 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400355 <<: *buildman_and_testpy_dfn
356
Bin Menga379d332020-03-28 07:25:27 -0700357qemu-riscv32 test.py:
Bin Menga379d332020-03-28 07:25:27 -0700358 variables:
359 TEST_PY_BD: "qemu-riscv32"
360 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700361 <<: *buildman_and_testpy_dfn
362
Tom Rini7298d822019-08-02 11:32:37 -0400363qemu-riscv64 test.py:
Tom Rini7298d822019-08-02 11:32:37 -0400364 variables:
365 TEST_PY_BD: "qemu-riscv64"
366 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini7298d822019-08-02 11:32:37 -0400367 <<: *buildman_and_testpy_dfn
368
Bin Meng49fb28a2020-03-28 07:25:29 -0700369qemu-riscv32_spl test.py:
Bin Meng49fb28a2020-03-28 07:25:29 -0700370 variables:
371 TEST_PY_BD: "qemu-riscv32_spl"
372 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700373 <<: *buildman_and_testpy_dfn
374
375qemu-riscv64_spl test.py:
Bin Meng49fb28a2020-03-28 07:25:29 -0700376 variables:
377 TEST_PY_BD: "qemu-riscv64_spl"
378 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700379 <<: *buildman_and_testpy_dfn
380
Tom Rini1a62a722019-06-19 09:25:17 -0400381qemu-x86 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400382 variables:
383 TEST_PY_BD: "qemu-x86"
384 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400385 <<: *buildman_and_testpy_dfn
386
387qemu-x86_64 test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400388 variables:
389 TEST_PY_BD: "qemu-x86_64"
390 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400391 <<: *buildman_and_testpy_dfn
392
Marek Vasut0e125752020-09-14 21:55:58 +0200393r2dplus_i82557c test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200394 variables:
395 TEST_PY_BD: "r2dplus"
396 TEST_PY_ID: "--id i82557c_qemu"
397 <<: *buildman_and_testpy_dfn
398
399r2dplus_pcnet test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200400 variables:
401 TEST_PY_BD: "r2dplus"
402 TEST_PY_ID: "--id pcnet_qemu"
403 <<: *buildman_and_testpy_dfn
404
405r2dplus_rtl8139 test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200406 variables:
407 TEST_PY_BD: "r2dplus"
408 TEST_PY_ID: "--id rtl8139_qemu"
409 <<: *buildman_and_testpy_dfn
410
411r2dplus_tulip test.py:
Marek Vasut0e125752020-09-14 21:55:58 +0200412 variables:
413 TEST_PY_BD: "r2dplus"
414 TEST_PY_ID: "--id tulip_qemu"
415 <<: *buildman_and_testpy_dfn
416
Bin Meng0e60b3a2021-08-26 23:33:35 +0800417sifive_unleashed_sdcard test.py:
418 variables:
419 TEST_PY_BD: "sifive_unleashed"
420 TEST_PY_ID: "--id sdcard_qemu"
421 <<: *buildman_and_testpy_dfn
422
423sifive_unleashed_spi-nor test.py:
424 variables:
425 TEST_PY_BD: "sifive_unleashed"
426 TEST_PY_ID: "--id spi-nor_qemu"
427 <<: *buildman_and_testpy_dfn
428
Michal Simekf7c6ee72020-02-13 15:03:29 +0100429xilinx_zynq_virt test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400430 variables:
Michal Simekf7c6ee72020-02-13 15:03:29 +0100431 TEST_PY_BD: "xilinx_zynq_virt"
Tom Rini1a62a722019-06-19 09:25:17 -0400432 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400433 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400434 <<: *buildman_and_testpy_dfn
435
436xilinx_versal_virt test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400437 variables:
438 TEST_PY_BD: "xilinx_versal_virt"
439 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400440 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400441 <<: *buildman_and_testpy_dfn
442
443xtfpga test.py:
Tom Rini1a62a722019-06-19 09:25:17 -0400444 variables:
445 TEST_PY_BD: "xtfpga"
446 TEST_PY_TEST_SPEC: "not sleep"
Tom Rini1a62a722019-06-19 09:25:17 -0400447 TEST_PY_ID: "--id qemu"
Tom Rini1a62a722019-06-19 09:25:17 -0400448 <<: *buildman_and_testpy_dfn
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700449
450coreboot test.py:
451 variables:
452 TEST_PY_BD: "coreboot"
453 TEST_PY_TEST_SPEC: "not sleep"
454 TEST_PY_ID: "--id qemu"
455 artifacts:
456 paths:
457 - "*.html"
458 - "*.css"
459 expire_in: 1 week
460 <<: *buildman_and_testpy_dfn