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 | 085b897 | 2019-10-24 11:59:27 -0400 | [diff] [blame] | 5 | image: trini/u-boot-gitlab-ci-runner:bionic-20191010-20Oct2019 |
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 |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 23 | - mkdir ~/grub2-arm |
| 24 | - ( cd ~/grub2-arm; wget -O - http://download.opensuse.org/ports/armv7hl/distribution/leap/42.2/repo/oss/suse/armv7hl/grub2-arm-efi-2.02~beta2-87.1.armv7hl.rpm | rpm2cpio | cpio -di ) |
| 25 | - mkdir ~/grub2-arm64 |
| 26 | - ( cd ~/grub2-arm64; wget -O - http://download.opensuse.org/ports/aarch64/distribution/leap/42.2/repo/oss/suse/aarch64/grub2-arm64-efi-2.02~beta2-87.1.aarch64.rpm | rpm2cpio | cpio -di ) |
Tom Rini | b29cb05 | 2019-07-24 13:09:31 -0400 | [diff] [blame] | 27 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 28 | after_script: |
Tom Rini | b29cb05 | 2019-07-24 13:09:31 -0400 | [diff] [blame] | 29 | - rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/venv |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 30 | script: |
| 31 | # From buildman, exit code 129 means warnings only. If we've been asked to |
| 32 | # use clang only do one configuration. |
| 33 | - if [[ "${BUILDMAN}" != "" ]]; then |
| 34 | ret=0; |
Tom Rini | db7b860 | 2019-10-04 12:12:53 -0400 | [diff] [blame] | 35 | tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 36 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
Tom Rini | db7b860 | 2019-10-04 12:12:53 -0400 | [diff] [blame] | 37 | tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN}; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 38 | exit $ret; |
| 39 | fi; |
| 40 | fi |
| 41 | # "not a_test_which_does_not_exist" is a dummy -k parameter which will |
| 42 | # never prevent any test from running. That way, we can always pass |
| 43 | # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom |
| 44 | # value. |
Tom Rini | 085b897 | 2019-10-24 11:59:27 -0400 | [diff] [blame] | 45 | - virtualenv -p /usr/bin/python3 /tmp/venv |
| 46 | - . /tmp/venv/bin/activate |
| 47 | - pip install -r test/py/requirements.txt |
Tom Rini | db7b860 | 2019-10-04 12:12:53 -0400 | [diff] [blame] | 48 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/${TEST_PY_BD}; |
Tom Rini | 90d3d78 | 2019-10-24 11:59:17 -0400 | [diff] [blame] | 49 | export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH}; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 50 | export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci; |
| 51 | if [[ "${TEST_PY_BD}" != "" ]]; then |
| 52 | ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID} |
| 53 | -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}" |
| 54 | --build-dir "$UBOOT_TRAVIS_BUILD_DIR"; |
| 55 | ret=$?; |
| 56 | if [[ $ret -ne 0 ]]; then |
| 57 | exit $ret; |
| 58 | fi; |
| 59 | fi; |
| 60 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 61 | build all 32bit ARM platforms: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 62 | tags: [ 'all' ] |
| 63 | stage: world build |
| 64 | script: |
| 65 | - ret=0; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 66 | ./tools/buildman/buildman -o /tmp -P -E arm -x aarch64 || ret=$?; |
| 67 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
| 68 | ./tools/buildman/buildman -o /tmp -sdeP; |
| 69 | exit $ret; |
| 70 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 71 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 72 | build all 64bit ARM platforms: |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 73 | tags: [ 'all' ] |
| 74 | stage: world build |
| 75 | script: |
Tom Rini | f0db839 | 2019-07-18 07:28:36 -0400 | [diff] [blame] | 76 | - virtualenv /tmp/venv |
| 77 | - . /tmp/venv/bin/activate |
| 78 | - pip install pyelftools |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 79 | - ret=0; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 80 | ./tools/buildman/buildman -o /tmp -P -E aarch64 || ret=$?; |
| 81 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
| 82 | ./tools/buildman/buildman -o /tmp -sdeP; |
| 83 | exit $ret; |
| 84 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 85 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 86 | build all PowerPC platforms: |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 87 | tags: [ 'all' ] |
| 88 | stage: world build |
| 89 | script: |
| 90 | - ret=0; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 91 | ./tools/buildman/buildman -o /tmp -P -E powerpc || ret=$?; |
| 92 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
| 93 | ./tools/buildman/buildman -o /tmp -sdeP; |
| 94 | exit $ret; |
| 95 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 96 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 97 | build all other platforms: |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 98 | tags: [ 'all' ] |
| 99 | stage: world build |
| 100 | script: |
| 101 | - ret=0; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 102 | ./tools/buildman/buildman -o /tmp -P -E -x arm,powerpc || ret=$?; |
| 103 | if [[ $ret -ne 0 && $ret -ne 129 ]]; then |
| 104 | ./tools/buildman/buildman -o /tmp -sdeP; |
| 105 | exit $ret; |
| 106 | fi; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 107 | |
| 108 | # QA jobs for code analytics |
| 109 | # static code analysis with cppcheck (we can add --enable=all later) |
| 110 | cppcheck: |
| 111 | tags: [ 'all' ] |
| 112 | stage: testsuites |
| 113 | script: |
| 114 | - cppcheck --force --quiet --inline-suppr . |
| 115 | |
| 116 | # search for TODO within source tree |
| 117 | grep TODO/FIXME/HACK: |
| 118 | tags: [ 'all' ] |
| 119 | stage: testsuites |
| 120 | script: |
| 121 | - grep -r TODO . |
| 122 | - grep -r FIXME . |
| 123 | # search for HACK within source tree and ignore HACKKIT board |
| 124 | - grep -r HACK . | grep -v HACKKIT |
| 125 | |
| 126 | # some statistics about the code base |
| 127 | sloccount: |
| 128 | tags: [ 'all' ] |
| 129 | stage: testsuites |
| 130 | script: |
| 131 | - sloccount . |
| 132 | |
| 133 | # ensure all configs have MAINTAINERS entries |
| 134 | Check for configs without MAINTAINERS entry: |
| 135 | tags: [ 'all' ] |
| 136 | stage: testsuites |
| 137 | script: |
| 138 | - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi |
| 139 | |
| 140 | # Ensure host tools build |
| 141 | Build tools-only: |
| 142 | tags: [ 'all' ] |
| 143 | stage: testsuites |
| 144 | script: |
| 145 | - make tools-only_config tools-only -j$(nproc) |
| 146 | |
Pierre-Jean Texier | 1f3910d | 2019-08-26 13:06:18 +0200 | [diff] [blame] | 147 | # Ensure env tools build |
| 148 | Build envtools: |
| 149 | tags: [ 'all' ] |
| 150 | stage: testsuites |
| 151 | script: |
| 152 | - make tools-only_config envtools -j$(nproc) |
| 153 | |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 154 | Run binman, buildman, dtoc and patman testsuites: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 155 | tags: [ 'all' ] |
| 156 | stage: testsuites |
| 157 | script: |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 158 | - git config --global user.name "GitLab CI Runner"; |
| 159 | git config --global user.email trini@konsulko.com; |
| 160 | export USER=gitlab; |
| 161 | virtualenv /tmp/venv; |
| 162 | . /tmp/venv/bin/activate; |
| 163 | pip install pyelftools; |
Tom Rini | db7b860 | 2019-10-04 12:12:53 -0400 | [diff] [blame] | 164 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/.bm-work/sandbox_spl; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 165 | export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; |
| 166 | export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; |
Tom Rini | db7b860 | 2019-10-04 12:12:53 -0400 | [diff] [blame] | 167 | ./tools/buildman/buildman -o /tmp -P sandbox_spl; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 168 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test; |
| 169 | ./tools/buildman/buildman -t; |
| 170 | ./tools/dtoc/dtoc -t; |
| 171 | ./tools/patman/patman --test |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 172 | |
| 173 | # Test sandbox with test.py |
| 174 | sandbox test.py: |
| 175 | tags: [ 'all' ] |
| 176 | variables: |
| 177 | TEST_PY_BD: "sandbox" |
| 178 | BUILDMAN: "^sandbox$" |
| 179 | <<: *buildman_and_testpy_dfn |
| 180 | |
Tom Rini | 0219d01 | 2019-11-06 19:30:47 -0500 | [diff] [blame] | 181 | sandbox with clang test.py: |
| 182 | tags: [ 'all' ] |
| 183 | variables: |
| 184 | TEST_PY_BD: "sandbox" |
| 185 | BUILDMAN: "^sandbox$" |
| 186 | OVERRIDE: "-O clang-7" |
| 187 | <<: *buildman_and_testpy_dfn |
| 188 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 189 | sandbox_spl test.py: |
| 190 | tags: [ 'all' ] |
| 191 | variables: |
| 192 | TEST_PY_BD: "sandbox_spl" |
| 193 | BUILDMAN: "^sandbox_spl$" |
| 194 | TEST_PY_TEST_SPEC: "test_ofplatdata" |
| 195 | <<: *buildman_and_testpy_dfn |
| 196 | |
Tom Rini | 699c0b9 | 2019-07-17 16:06:57 -0400 | [diff] [blame] | 197 | evb-ast2500 test.py: |
| 198 | tags: [ 'all' ] |
| 199 | variables: |
| 200 | TEST_PY_BD: "evb-ast2500" |
| 201 | TEST_PY_ID: "--id qemu" |
Tom Rini | 699c0b9 | 2019-07-17 16:06:57 -0400 | [diff] [blame] | 202 | BUILDMAN: "^evb-ast2500$" |
| 203 | <<: *buildman_and_testpy_dfn |
| 204 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 205 | sandbox_flattree test.py: |
| 206 | tags: [ 'all' ] |
| 207 | variables: |
| 208 | TEST_PY_BD: "sandbox_flattree" |
| 209 | BUILDMAN: "^sandbox_flattree$" |
| 210 | <<: *buildman_and_testpy_dfn |
| 211 | |
| 212 | vexpress_ca15_tc2 test.py: |
| 213 | tags: [ 'all' ] |
| 214 | variables: |
| 215 | TEST_PY_BD: "vexpress_ca15_tc2" |
| 216 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 217 | BUILDMAN: "^vexpress_ca15_tc2$" |
| 218 | <<: *buildman_and_testpy_dfn |
| 219 | |
| 220 | vexpress_ca9x4 test.py: |
| 221 | tags: [ 'all' ] |
| 222 | variables: |
| 223 | TEST_PY_BD: "vexpress_ca9x4" |
| 224 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 225 | BUILDMAN: "^vexpress_ca9x4$" |
| 226 | <<: *buildman_and_testpy_dfn |
| 227 | |
| 228 | integratorcp_cm926ejs test.py: |
| 229 | tags: [ 'all' ] |
| 230 | variables: |
| 231 | TEST_PY_BD: "integratorcp_cm926ejs" |
| 232 | TEST_PY_TEST_SPEC: "not sleep" |
| 233 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 234 | BUILDMAN: "^integratorcp_cm926ejs$" |
| 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: "^qemu_arm$" |
| 243 | <<: *buildman_and_testpy_dfn |
| 244 | |
| 245 | qemu_arm64 test.py: |
| 246 | tags: [ 'all' ] |
| 247 | variables: |
| 248 | TEST_PY_BD: "qemu_arm64" |
| 249 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 250 | BUILDMAN: "^qemu_arm64$" |
| 251 | <<: *buildman_and_testpy_dfn |
| 252 | |
| 253 | qemu_mips test.py: |
| 254 | tags: [ 'all' ] |
| 255 | variables: |
| 256 | TEST_PY_BD: "qemu_mips" |
| 257 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 258 | BUILDMAN: "^qemu_mips$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 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" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 266 | BUILDMAN: "^qemu_mipsel$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 267 | <<: *buildman_and_testpy_dfn |
| 268 | |
| 269 | qemu_mips64 test.py: |
| 270 | tags: [ 'all' ] |
| 271 | variables: |
| 272 | TEST_PY_BD: "qemu_mips64" |
| 273 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 274 | BUILDMAN: "^qemu_mips64$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 275 | <<: *buildman_and_testpy_dfn |
| 276 | |
| 277 | qemu_mips64el test.py: |
| 278 | tags: [ 'all' ] |
| 279 | variables: |
| 280 | TEST_PY_BD: "qemu_mips64el" |
| 281 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 282 | BUILDMAN: "^qemu_mips64el$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 283 | <<: *buildman_and_testpy_dfn |
| 284 | |
| 285 | qemu-ppce500 test.py: |
| 286 | tags: [ 'all' ] |
| 287 | variables: |
| 288 | TEST_PY_BD: "qemu-ppce500" |
| 289 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 290 | BUILDMAN: "^qemu-ppce500$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [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" |
| 298 | BUILDMAN: "^qemu-riscv64$" |
| 299 | <<: *buildman_and_testpy_dfn |
| 300 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 301 | qemu-x86 test.py: |
| 302 | tags: [ 'all' ] |
| 303 | variables: |
| 304 | TEST_PY_BD: "qemu-x86" |
| 305 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 306 | BUILDMAN: "^qemu-x86$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 307 | <<: *buildman_and_testpy_dfn |
| 308 | |
| 309 | qemu-x86_64 test.py: |
| 310 | tags: [ 'all' ] |
| 311 | variables: |
| 312 | TEST_PY_BD: "qemu-x86_64" |
| 313 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 314 | BUILDMAN: "^qemu-x86_64$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 315 | <<: *buildman_and_testpy_dfn |
| 316 | |
| 317 | zynq_zc702 test.py: |
| 318 | tags: [ 'all' ] |
| 319 | variables: |
| 320 | TEST_PY_BD: "zynq_zc702" |
| 321 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 322 | TEST_PY_ID: "--id qemu" |
| 323 | BUILDMAN: "^zynq_zc702$" |
| 324 | <<: *buildman_and_testpy_dfn |
| 325 | |
| 326 | xilinx_versal_virt test.py: |
| 327 | tags: [ 'all' ] |
| 328 | variables: |
| 329 | TEST_PY_BD: "xilinx_versal_virt" |
| 330 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 331 | TEST_PY_ID: "--id qemu" |
| 332 | BUILDMAN: "^xilinx_versal_virt$" |
| 333 | <<: *buildman_and_testpy_dfn |
| 334 | |
| 335 | xtfpga test.py: |
| 336 | tags: [ 'all' ] |
| 337 | variables: |
| 338 | TEST_PY_BD: "xtfpga" |
| 339 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 340 | TEST_PY_ID: "--id qemu" |
| 341 | BUILDMAN: "^xtfpga$" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 342 | <<: *buildman_and_testpy_dfn |