Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
Peter Hoyes | 8b0b501 | 2023-03-10 09:53:02 +0000 | [diff] [blame] | 3 | variables: |
| 4 | DEFAULT_TAG: "" |
Peter Hoyes | 74bcbb1 | 2023-03-10 09:53:03 +0000 | [diff] [blame] | 5 | MIRROR_DOCKER: docker.io |
Peter Hoyes | 8b0b501 | 2023-03-10 09:53:02 +0000 | [diff] [blame] | 6 | |
| 7 | default: |
| 8 | tags: |
| 9 | - ${DEFAULT_TAG} |
| 10 | |
Joel Stanley | cb73517 | 2022-08-23 16:18:26 +1000 | [diff] [blame] | 11 | # Grab our configured image. The source for this is found |
| 12 | # in the u-boot tree at tools/docker/Dockerfile |
Tom Rini | 453c3fb | 2023-08-25 13:21:27 -0400 | [diff] [blame] | 13 | image: ${MIRROR_DOCKER}/trini/u-boot-gitlab-ci-runner:jammy-20230804-25Aug2023 |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 14 | |
| 15 | # We run some tests in different order, to catch some failures quicker. |
| 16 | stages: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 17 | - testsuites |
Tom Rini | b29cb05 | 2019-07-24 13:09:31 -0400 | [diff] [blame] | 18 | - test.py |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 19 | - world build |
| 20 | |
| 21 | .buildman_and_testpy_template: &buildman_and_testpy_dfn |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 22 | stage: test.py |
Tom Rini | 58b3585 | 2023-07-11 22:33:03 -0400 | [diff] [blame] | 23 | retry: 2 # QEMU may be too slow, etc. |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 24 | rules: |
| 25 | - when: always |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 26 | before_script: |
| 27 | # Clone uboot-test-hooks |
Tom Rini | bd181a2 | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 28 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
Tom Rini | 85ae52b | 2021-02-24 17:05:04 -0500 | [diff] [blame] | 29 | - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 30 | - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname` |
| 31 | - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname` |
Tom Rini | 28a5123 | 2019-10-04 12:12:54 -0400 | [diff] [blame] | 32 | - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd |
| 33 | - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 34 | - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then |
Heinrich Schuchardt | a966634 | 2023-10-25 00:15:43 +0200 | [diff] [blame] | 35 | wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ; |
| 36 | export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin; |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 37 | fi |
Bin Meng | 0e60b3a | 2021-08-26 23:33:35 +0800 | [diff] [blame] | 38 | - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then |
Heinrich Schuchardt | a966634 | 2023-10-25 00:15:43 +0200 | [diff] [blame] | 39 | wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ; |
| 40 | export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin; |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 41 | fi |
Tom Rini | b29cb05 | 2019-07-24 13:09:31 -0400 | [diff] [blame] | 42 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 43 | after_script: |
Marek Vasut | e567073 | 2023-03-03 02:22:25 +0100 | [diff] [blame] | 44 | - cp -v /tmp/${TEST_PY_BD}/*.{html,css} . |
Heinrich Schuchardt | 24df1b1 | 2019-12-19 13:30:32 +0100 | [diff] [blame] | 45 | - rm -rf /tmp/uboot-test-hooks /tmp/venv |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 46 | script: |
Simon Glass | dd5c954 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 47 | # If we've been asked to use clang only do one configuration. |
Simon Glass | 4e32fed | 2020-03-18 09:42:55 -0600 | [diff] [blame] | 48 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD} |
Simon Glass | 1aa168c | 2022-08-03 12:13:09 -0600 | [diff] [blame] | 49 | - echo BUILD_ENV ${BUILD_ENV} |
Simon Glass | 9cea479 | 2023-01-15 14:16:00 -0700 | [diff] [blame] | 50 | - if [ -n "${BUILD_ENV}" ]; then |
| 51 | export ${BUILD_ENV}; |
| 52 | fi |
Simon Glass | 7ec1255 | 2020-03-18 09:43:00 -0600 | [diff] [blame] | 53 | - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e |
| 54 | --board ${TEST_PY_BD} ${OVERRIDE} |
Heinrich Schuchardt | 82560ae | 2020-07-14 00:23:58 +0200 | [diff] [blame] | 55 | - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/ |
| 56 | - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/ |
| 57 | - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi |
Heinrich Schuchardt | 82560ae | 2020-07-14 00:23:58 +0200 | [diff] [blame] | 58 | - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi |
| 59 | - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi |
Bin Meng | 0e60b3a | 2021-08-26 23:33:35 +0800 | [diff] [blame] | 60 | # create sdcard / spi-nor images for sifive unleashed using genimage |
| 61 | - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then |
| 62 | mkdir -p root; |
| 63 | cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .; |
| 64 | cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .; |
| 65 | rm -rf tmp; |
| 66 | genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg; |
| 67 | cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/; |
| 68 | rm -rf tmp; |
| 69 | genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg; |
| 70 | cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/; |
| 71 | fi |
Simon Glass | bfb2a7f | 2022-01-21 10:23:01 -0700 | [diff] [blame] | 72 | - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then |
| 73 | wget -O - |
Simon Glass | c60e6a2 | 2023-08-11 12:17:43 -0600 | [diff] [blame] | 74 | "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" | |
Simon Glass | bfb2a7f | 2022-01-21 10:23:01 -0700 | [diff] [blame] | 75 | xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom; |
| 76 | wget -O - |
| 77 | "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" > |
| 78 | cbfstool; |
| 79 | chmod a+x cbfstool; |
| 80 | ./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; |
| 81 | fi |
Tom Rini | 085b897 | 2019-10-24 11:59:27 -0400 | [diff] [blame] | 82 | - virtualenv -p /usr/bin/python3 /tmp/venv |
| 83 | - . /tmp/venv/bin/activate |
| 84 | - pip install -r test/py/requirements.txt |
Simon Glass | 4080d09 | 2020-03-18 09:42:56 -0600 | [diff] [blame] | 85 | # "${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] | 86 | - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH}; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 87 | export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci; |
Heinrich Schuchardt | f309247 | 2020-07-10 22:04:40 +0200 | [diff] [blame] | 88 | ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID} |
Simon Glass | 4080d09 | 2020-03-18 09:42:56 -0600 | [diff] [blame] | 89 | ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} |
Simon Glass | cec1e85 | 2020-03-18 09:42:59 -0600 | [diff] [blame] | 90 | --build-dir "$UBOOT_TRAVIS_BUILD_DIR" |
Marek Vasut | e567073 | 2023-03-03 02:22:25 +0100 | [diff] [blame] | 91 | artifacts: |
| 92 | when: always |
| 93 | paths: |
| 94 | - "*.html" |
| 95 | - "*.css" |
| 96 | expire_in: 1 week |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 97 | |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 98 | .world_build: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 99 | stage: world build |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 100 | rules: |
| 101 | - when: always |
| 102 | |
| 103 | build all 32bit ARM platforms: |
| 104 | extends: .world_build |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 105 | script: |
| 106 | - ret=0; |
Tom Rini | bd181a2 | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 107 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
Tom Rini | f586cda | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 108 | pip install -r tools/buildman/requirements.txt; |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 109 | ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?; |
Simon Glass | dd5c954 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 110 | if [[ $ret -ne 0 ]]; then |
Simon Glass | b52f5a1 | 2020-03-18 09:42:53 -0600 | [diff] [blame] | 111 | ./tools/buildman/buildman -o /tmp -seP; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 112 | exit $ret; |
| 113 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 114 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 115 | build all 64bit ARM platforms: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 116 | extends: .world_build |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 117 | script: |
Tom Rini | 26a426a | 2020-02-11 12:41:14 -0500 | [diff] [blame] | 118 | - virtualenv -p /usr/bin/python3 /tmp/venv |
Tom Rini | f0db839 | 2019-07-18 07:28:36 -0400 | [diff] [blame] | 119 | - . /tmp/venv/bin/activate |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 120 | - ret=0; |
Tom Rini | bd181a2 | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 121 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
Tom Rini | f586cda | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 122 | pip install -r tools/buildman/requirements.txt; |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 123 | ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?; |
Simon Glass | dd5c954 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 124 | if [[ $ret -ne 0 ]]; then |
Simon Glass | b52f5a1 | 2020-03-18 09:42:53 -0600 | [diff] [blame] | 125 | ./tools/buildman/buildman -o /tmp -seP; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 126 | exit $ret; |
| 127 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 128 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 129 | build all PowerPC platforms: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 130 | extends: .world_build |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 131 | script: |
| 132 | - ret=0; |
Tom Rini | bd181a2 | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 133 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
Simon Glass | dd5c954 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 134 | ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?; |
| 135 | if [[ $ret -ne 0 ]]; then |
Simon Glass | b52f5a1 | 2020-03-18 09:42:53 -0600 | [diff] [blame] | 136 | ./tools/buildman/buildman -o /tmp -seP; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 137 | exit $ret; |
| 138 | fi; |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 139 | |
Heinrich Schuchardt | a11cb57 | 2019-10-06 12:26:16 +0200 | [diff] [blame] | 140 | build all other platforms: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 141 | extends: .world_build |
Tom Rini | 9f7bda1 | 2019-07-17 17:51:28 -0400 | [diff] [blame] | 142 | script: |
| 143 | - ret=0; |
Tom Rini | bd181a2 | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 144 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 145 | ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?; |
Simon Glass | dd5c954 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 146 | if [[ $ret -ne 0 ]]; then |
Simon Glass | b52f5a1 | 2020-03-18 09:42:53 -0600 | [diff] [blame] | 147 | ./tools/buildman/buildman -o /tmp -seP; |
Tom Rini | 4c74997 | 2019-10-24 11:59:16 -0400 | [diff] [blame] | 148 | exit $ret; |
| 149 | fi; |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 150 | |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 151 | .testsuites: |
Tom Rini | c1a7de5 | 2021-12-14 13:36:41 -0500 | [diff] [blame] | 152 | stage: testsuites |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 153 | rules: |
| 154 | - when: always |
| 155 | |
| 156 | check for new CONFIG symbols outside Kconfig: |
| 157 | extends: .testsuites |
Tom Rini | c1a7de5 | 2021-12-14 13:36:41 -0500 | [diff] [blame] | 158 | script: |
Tom Rini | bb9b9c1 | 2022-12-04 10:14:15 -0500 | [diff] [blame] | 159 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
| 160 | # If grep succeeds and finds a match the test fails as we should |
| 161 | # have no matches. |
| 162 | - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_' |
Tom Rini | a03efb6 | 2023-01-10 11:19:46 -0500 | [diff] [blame] | 163 | :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h |
| 164 | :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0 |
Tom Rini | c1a7de5 | 2021-12-14 13:36:41 -0500 | [diff] [blame] | 165 | |
Heinrich Schuchardt | e9cc702 | 2023-01-12 20:30:58 +0100 | [diff] [blame] | 166 | # build documentation |
| 167 | docs: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 168 | extends: .testsuites |
Heinrich Schuchardt | 3eb7b78 | 2020-02-21 18:24:01 +0100 | [diff] [blame] | 169 | script: |
Heinrich Schuchardt | 836049d | 2021-01-25 22:06:25 +0100 | [diff] [blame] | 170 | - virtualenv -p /usr/bin/python3 /tmp/venvhtml |
| 171 | - . /tmp/venvhtml/bin/activate |
| 172 | - pip install -r doc/sphinx/requirements.txt |
Heinrich Schuchardt | 8a6414d | 2023-05-02 05:04:11 +0200 | [diff] [blame] | 173 | - make htmldocs KDOC_WERROR=1 |
Heinrich Schuchardt | e9cc702 | 2023-01-12 20:30:58 +0100 | [diff] [blame] | 174 | - make infodocs |
Heinrich Schuchardt | 3eb7b78 | 2020-02-21 18:24:01 +0100 | [diff] [blame] | 175 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 176 | # ensure all configs have MAINTAINERS entries |
| 177 | Check for configs without MAINTAINERS entry: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 178 | extends: .testsuites |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 179 | script: |
Tom Rini | d6b3297 | 2023-10-23 11:37:47 -0400 | [diff] [blame] | 180 | - ./tools/buildman/buildman --maintainer-check |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 181 | |
| 182 | # Ensure host tools build |
Tom Rini | 562ed11 | 2023-08-20 13:31:28 -0400 | [diff] [blame] | 183 | Build tools-only and envtools: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 184 | extends: .testsuites |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 185 | script: |
Tom Rini | 562ed11 | 2023-08-20 13:31:28 -0400 | [diff] [blame] | 186 | - make tools-only_config tools-only -j$(nproc); |
| 187 | make mrproper; |
| 188 | make tools-only_config envtools -j$(nproc) |
Pierre-Jean Texier | 1f3910d | 2019-08-26 13:06:18 +0200 | [diff] [blame] | 189 | |
Tom Rini | 7261833 | 2020-03-11 18:11:15 -0400 | [diff] [blame] | 190 | Run binman, buildman, dtoc, Kconfig and patman testsuites: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 191 | extends: .testsuites |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 192 | script: |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 193 | - git config --global user.name "GitLab CI Runner"; |
| 194 | git config --global user.email trini@konsulko.com; |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 195 | git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 196 | export USER=gitlab; |
Tom Rini | 26a426a | 2020-02-11 12:41:14 -0500 | [diff] [blame] | 197 | virtualenv -p /usr/bin/python3 /tmp/venv; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 198 | . /tmp/venv/bin/activate; |
Tom Rini | 38229b5 | 2021-02-26 07:52:29 -0500 | [diff] [blame] | 199 | pip install -r test/py/requirements.txt; |
Tom Rini | f586cda | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 200 | pip install -r tools/buildman/requirements.txt; |
Tom Rini | 48f792e | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 201 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 202 | export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"; |
| 203 | export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}"; |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 204 | set +e; |
Simon Glass | 6c914e4 | 2021-03-15 17:25:34 +1300 | [diff] [blame] | 205 | ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w |
Tom Rini | 48f792e | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 206 | --board tools-only; |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 207 | set -e; |
Tom Rini | d7ae932 | 2019-08-12 10:09:08 -0400 | [diff] [blame] | 208 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test; |
| 209 | ./tools/buildman/buildman -t; |
| 210 | ./tools/dtoc/dtoc -t; |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 211 | ./tools/patman/patman test; |
Tom Rini | 7261833 | 2020-03-11 18:11:15 -0400 | [diff] [blame] | 212 | make testconfig |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 213 | |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 214 | # Check for any pylint regressions |
| 215 | Run pylint: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 216 | extends: .testsuites |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 217 | script: |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 218 | - git config --global --add safe.directory "${CI_PROJECT_DIR}" |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 219 | - pip install -r test/py/requirements.txt |
Tom Rini | f586cda | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 220 | - pip install -r tools/buildman/requirements.txt |
Tom Rini | e47bbf7 | 2022-03-25 08:19:09 -0400 | [diff] [blame] | 221 | - pip install asteval pylint==2.12.2 pyopenssl |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 222 | - export PATH=${PATH}:~/.local/bin |
| 223 | - echo "[MASTER]" >> .pylintrc |
| 224 | - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc |
Tom Rini | 48f792e | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 225 | - export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 226 | - set +e |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 227 | - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w |
Tom Rini | 48f792e | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 228 | --board tools-only |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 229 | - set -e |
Simon Glass | 642e51a | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 230 | - pylint --version |
| 231 | - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt" |
| 232 | - make pylint_err |
| 233 | |
Simon Glass | 441a3d0 | 2023-02-13 08:56:39 -0700 | [diff] [blame] | 234 | # Check for pre-schema driver model tags |
| 235 | Check for pre-schema tags: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 236 | extends: .testsuites |
Simon Glass | 441a3d0 | 2023-02-13 08:56:39 -0700 | [diff] [blame] | 237 | script: |
| 238 | - git config --global --add safe.directory "${CI_PROJECT_DIR}"; |
| 239 | # If grep succeeds and finds a match the test fails as we should |
| 240 | # have no matches. |
| 241 | - git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0 |
| 242 | |
Simon Glass | c21a528 | 2023-02-23 18:18:24 -0700 | [diff] [blame] | 243 | # Check we can package the Python tools |
| 244 | Check packing of Python tools: |
Andrejs Cainikovs | 399f739 | 2023-09-13 16:15:36 +0200 | [diff] [blame] | 245 | extends: .testsuites |
Simon Glass | c21a528 | 2023-02-23 18:18:24 -0700 | [diff] [blame] | 246 | script: |
| 247 | - make pip |
| 248 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 249 | # Test sandbox with test.py |
| 250 | sandbox test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 251 | variables: |
| 252 | TEST_PY_BD: "sandbox" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 253 | <<: *buildman_and_testpy_dfn |
| 254 | |
Tom Rini | 0219d01 | 2019-11-06 19:30:47 -0500 | [diff] [blame] | 255 | sandbox with clang test.py: |
Tom Rini | 0219d01 | 2019-11-06 19:30:47 -0500 | [diff] [blame] | 256 | variables: |
| 257 | TEST_PY_BD: "sandbox" |
Tom Rini | d7e0678 | 2023-03-21 15:07:45 -0400 | [diff] [blame] | 258 | OVERRIDE: "-O clang-16" |
Tom Rini | 0219d01 | 2019-11-06 19:30:47 -0500 | [diff] [blame] | 259 | <<: *buildman_and_testpy_dfn |
| 260 | |
Simon Glass | 1aa168c | 2022-08-03 12:13:09 -0600 | [diff] [blame] | 261 | sandbox without LTO test.py: |
| 262 | variables: |
| 263 | TEST_PY_BD: "sandbox" |
| 264 | BUILD_ENV: "NO_LTO=1" |
| 265 | <<: *buildman_and_testpy_dfn |
| 266 | |
Marek Vasut | c807bdd | 2023-09-01 10:48:10 +0200 | [diff] [blame] | 267 | sandbox64 test.py: |
| 268 | variables: |
| 269 | TEST_PY_BD: "sandbox64" |
| 270 | <<: *buildman_and_testpy_dfn |
| 271 | |
| 272 | sandbox64 with clang test.py: |
| 273 | variables: |
| 274 | TEST_PY_BD: "sandbox64" |
| 275 | OVERRIDE: "-O clang-16" |
| 276 | <<: *buildman_and_testpy_dfn |
| 277 | |
| 278 | sandbox64 without LTO test.py: |
| 279 | variables: |
| 280 | TEST_PY_BD: "sandbox64" |
| 281 | BUILD_ENV: "NO_LTO=1" |
| 282 | <<: *buildman_and_testpy_dfn |
| 283 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 284 | sandbox_spl test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 285 | variables: |
| 286 | TEST_PY_BD: "sandbox_spl" |
Simon Glass | afb26ba | 2020-10-25 20:38:36 -0600 | [diff] [blame] | 287 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 288 | <<: *buildman_and_testpy_dfn |
| 289 | |
Simon Glass | 6c914e4 | 2021-03-15 17:25:34 +1300 | [diff] [blame] | 290 | sandbox_noinst_test.py: |
Simon Glass | 6c914e4 | 2021-03-15 17:25:34 +1300 | [diff] [blame] | 291 | variables: |
| 292 | TEST_PY_BD: "sandbox_noinst" |
| 293 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
| 294 | <<: *buildman_and_testpy_dfn |
| 295 | |
Sean Anderson | b93cc1e | 2023-10-14 16:47:59 -0400 | [diff] [blame] | 296 | sandbox_noinst with LOAD_FIT_FULL test.py: |
| 297 | variables: |
| 298 | TEST_PY_BD: "sandbox_noinst" |
| 299 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
| 300 | OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y" |
| 301 | <<: *buildman_and_testpy_dfn |
| 302 | |
Simon Glass | a31eff3 | 2022-04-30 00:56:57 -0600 | [diff] [blame] | 303 | sandbox_vpl test.py: |
| 304 | variables: |
| 305 | TEST_PY_BD: "sandbox_vpl" |
Simon Glass | 8b60987 | 2023-04-02 14:01:26 +1200 | [diff] [blame] | 306 | TEST_PY_TEST_SPEC: "vpl or test_spl" |
Simon Glass | a31eff3 | 2022-04-30 00:56:57 -0600 | [diff] [blame] | 307 | <<: *buildman_and_testpy_dfn |
| 308 | |
Simon Glass | 9cea479 | 2023-01-15 14:16:00 -0700 | [diff] [blame] | 309 | # Enable tracing and disable LTO, to ensure functions are not elided |
| 310 | sandbox trace_test.py: |
| 311 | variables: |
| 312 | TEST_PY_BD: "sandbox" |
| 313 | BUILD_ENV: "FTRACE=1 NO_LTO=1" |
| 314 | TEST_PY_TEST_SPEC: "trace" |
Sughosh Ganu | 61cad8d | 2023-08-22 23:10:02 +0530 | [diff] [blame] | 315 | OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000" |
Simon Glass | 9cea479 | 2023-01-15 14:16:00 -0700 | [diff] [blame] | 316 | <<: *buildman_and_testpy_dfn |
| 317 | |
Tom Rini | 699c0b9 | 2019-07-17 16:06:57 -0400 | [diff] [blame] | 318 | evb-ast2500 test.py: |
Tom Rini | 699c0b9 | 2019-07-17 16:06:57 -0400 | [diff] [blame] | 319 | variables: |
| 320 | TEST_PY_BD: "evb-ast2500" |
| 321 | TEST_PY_ID: "--id qemu" |
Tom Rini | 699c0b9 | 2019-07-17 16:06:57 -0400 | [diff] [blame] | 322 | <<: *buildman_and_testpy_dfn |
| 323 | |
Joel Stanley | b24087a | 2022-06-29 16:35:25 +0930 | [diff] [blame] | 324 | evb-ast2600 test.py: |
| 325 | variables: |
| 326 | TEST_PY_BD: "evb-ast2600" |
| 327 | TEST_PY_ID: "--id qemu" |
| 328 | <<: *buildman_and_testpy_dfn |
| 329 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 330 | sandbox_flattree test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 331 | variables: |
| 332 | TEST_PY_BD: "sandbox_flattree" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 333 | <<: *buildman_and_testpy_dfn |
| 334 | |
Kristian Amlie | 15e3010 | 2021-09-07 08:37:51 +0200 | [diff] [blame] | 335 | vexpress_ca9x4 test.py: |
| 336 | variables: |
| 337 | TEST_PY_BD: "vexpress_ca9x4" |
| 338 | TEST_PY_ID: "--id qemu" |
| 339 | <<: *buildman_and_testpy_dfn |
| 340 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 341 | integratorcp_cm926ejs test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 342 | variables: |
| 343 | TEST_PY_BD: "integratorcp_cm926ejs" |
| 344 | TEST_PY_TEST_SPEC: "not sleep" |
| 345 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 346 | <<: *buildman_and_testpy_dfn |
| 347 | |
| 348 | qemu_arm test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 349 | variables: |
| 350 | TEST_PY_BD: "qemu_arm" |
| 351 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 352 | <<: *buildman_and_testpy_dfn |
| 353 | |
| 354 | qemu_arm64 test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 355 | variables: |
| 356 | TEST_PY_BD: "qemu_arm64" |
| 357 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 358 | <<: *buildman_and_testpy_dfn |
| 359 | |
Marek Vasut | a21e112 | 2023-03-23 01:22:41 +0100 | [diff] [blame] | 360 | qemu_m68k test.py: |
| 361 | variables: |
| 362 | TEST_PY_BD: "M5208EVBE" |
| 363 | TEST_PY_ID: "--id qemu" |
| 364 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 365 | OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR" |
| 366 | <<: *buildman_and_testpy_dfn |
| 367 | |
Daniel Schwierzeck | d853316 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 368 | qemu_malta test.py: |
Daniel Schwierzeck | d853316 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 369 | variables: |
| 370 | TEST_PY_BD: "malta" |
| 371 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 372 | TEST_PY_ID: "--id qemu" |
| 373 | <<: *buildman_and_testpy_dfn |
| 374 | |
| 375 | qemu_maltael test.py: |
Daniel Schwierzeck | d853316 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 376 | variables: |
| 377 | TEST_PY_BD: "maltael" |
| 378 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 379 | TEST_PY_ID: "--id qemu" |
| 380 | <<: *buildman_and_testpy_dfn |
| 381 | |
| 382 | qemu_malta64 test.py: |
Daniel Schwierzeck | d853316 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 383 | variables: |
| 384 | TEST_PY_BD: "malta64" |
| 385 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 386 | TEST_PY_ID: "--id qemu" |
| 387 | <<: *buildman_and_testpy_dfn |
| 388 | |
| 389 | qemu_malta64el test.py: |
Daniel Schwierzeck | d853316 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 390 | variables: |
| 391 | TEST_PY_BD: "malta64el" |
| 392 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 393 | TEST_PY_ID: "--id qemu" |
| 394 | <<: *buildman_and_testpy_dfn |
| 395 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 396 | qemu-ppce500 test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 397 | variables: |
| 398 | TEST_PY_BD: "qemu-ppce500" |
| 399 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 400 | <<: *buildman_and_testpy_dfn |
| 401 | |
Bin Meng | a379d33 | 2020-03-28 07:25:27 -0700 | [diff] [blame] | 402 | qemu-riscv32 test.py: |
Bin Meng | a379d33 | 2020-03-28 07:25:27 -0700 | [diff] [blame] | 403 | variables: |
| 404 | TEST_PY_BD: "qemu-riscv32" |
| 405 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | a379d33 | 2020-03-28 07:25:27 -0700 | [diff] [blame] | 406 | <<: *buildman_and_testpy_dfn |
| 407 | |
Tom Rini | 7298d82 | 2019-08-02 11:32:37 -0400 | [diff] [blame] | 408 | qemu-riscv64 test.py: |
Tom Rini | 7298d82 | 2019-08-02 11:32:37 -0400 | [diff] [blame] | 409 | variables: |
| 410 | TEST_PY_BD: "qemu-riscv64" |
| 411 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 7298d82 | 2019-08-02 11:32:37 -0400 | [diff] [blame] | 412 | <<: *buildman_and_testpy_dfn |
| 413 | |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 414 | qemu-riscv32_spl test.py: |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 415 | variables: |
| 416 | TEST_PY_BD: "qemu-riscv32_spl" |
| 417 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 418 | <<: *buildman_and_testpy_dfn |
| 419 | |
| 420 | qemu-riscv64_spl test.py: |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 421 | variables: |
| 422 | TEST_PY_BD: "qemu-riscv64_spl" |
| 423 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | 49fb28a | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 424 | <<: *buildman_and_testpy_dfn |
| 425 | |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 426 | qemu-x86 test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 427 | variables: |
| 428 | TEST_PY_BD: "qemu-x86" |
| 429 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 430 | <<: *buildman_and_testpy_dfn |
| 431 | |
| 432 | qemu-x86_64 test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 433 | variables: |
| 434 | TEST_PY_BD: "qemu-x86_64" |
| 435 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 436 | <<: *buildman_and_testpy_dfn |
| 437 | |
Marek Vasut | 0e12575 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 438 | r2dplus_i82557c test.py: |
Marek Vasut | 0e12575 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 439 | variables: |
| 440 | TEST_PY_BD: "r2dplus" |
| 441 | TEST_PY_ID: "--id i82557c_qemu" |
| 442 | <<: *buildman_and_testpy_dfn |
| 443 | |
| 444 | r2dplus_pcnet test.py: |
Marek Vasut | 0e12575 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 445 | variables: |
| 446 | TEST_PY_BD: "r2dplus" |
| 447 | TEST_PY_ID: "--id pcnet_qemu" |
| 448 | <<: *buildman_and_testpy_dfn |
| 449 | |
| 450 | r2dplus_rtl8139 test.py: |
Marek Vasut | 0e12575 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 451 | variables: |
| 452 | TEST_PY_BD: "r2dplus" |
| 453 | TEST_PY_ID: "--id rtl8139_qemu" |
| 454 | <<: *buildman_and_testpy_dfn |
| 455 | |
| 456 | r2dplus_tulip test.py: |
Marek Vasut | 0e12575 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 457 | variables: |
| 458 | TEST_PY_BD: "r2dplus" |
| 459 | TEST_PY_ID: "--id tulip_qemu" |
| 460 | <<: *buildman_and_testpy_dfn |
| 461 | |
Bin Meng | 0e60b3a | 2021-08-26 23:33:35 +0800 | [diff] [blame] | 462 | sifive_unleashed_sdcard test.py: |
| 463 | variables: |
| 464 | TEST_PY_BD: "sifive_unleashed" |
| 465 | TEST_PY_ID: "--id sdcard_qemu" |
| 466 | <<: *buildman_and_testpy_dfn |
| 467 | |
| 468 | sifive_unleashed_spi-nor test.py: |
| 469 | variables: |
| 470 | TEST_PY_BD: "sifive_unleashed" |
| 471 | TEST_PY_ID: "--id spi-nor_qemu" |
| 472 | <<: *buildman_and_testpy_dfn |
| 473 | |
Michal Simek | f7c6ee7 | 2020-02-13 15:03:29 +0100 | [diff] [blame] | 474 | xilinx_zynq_virt test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 475 | variables: |
Michal Simek | f7c6ee7 | 2020-02-13 15:03:29 +0100 | [diff] [blame] | 476 | TEST_PY_BD: "xilinx_zynq_virt" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 477 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 478 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 479 | <<: *buildman_and_testpy_dfn |
| 480 | |
| 481 | xilinx_versal_virt test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 482 | variables: |
| 483 | TEST_PY_BD: "xilinx_versal_virt" |
| 484 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 485 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 486 | <<: *buildman_and_testpy_dfn |
| 487 | |
| 488 | xtfpga test.py: |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 489 | variables: |
| 490 | TEST_PY_BD: "xtfpga" |
| 491 | TEST_PY_TEST_SPEC: "not sleep" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 492 | TEST_PY_ID: "--id qemu" |
Tom Rini | 1a62a72 | 2019-06-19 09:25:17 -0400 | [diff] [blame] | 493 | <<: *buildman_and_testpy_dfn |
Simon Glass | bfb2a7f | 2022-01-21 10:23:01 -0700 | [diff] [blame] | 494 | |
| 495 | coreboot test.py: |
| 496 | variables: |
| 497 | TEST_PY_BD: "coreboot" |
| 498 | TEST_PY_TEST_SPEC: "not sleep" |
| 499 | TEST_PY_ID: "--id qemu" |
Simon Glass | bfb2a7f | 2022-01-21 10:23:01 -0700 | [diff] [blame] | 500 | <<: *buildman_and_testpy_dfn |