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