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