Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 1 | variables: |
Tom Rini | d5f27cb | 2021-10-31 13:24:42 -0400 | [diff] [blame] | 2 | windows_vm: windows-2019 |
Tom Rini | 9f151fe | 2022-08-08 22:44:45 -0400 | [diff] [blame] | 3 | ubuntu_vm: ubuntu-22.04 |
Tom Rini | 72d5de5 | 2022-07-27 11:10:24 -0400 | [diff] [blame] | 4 | macos_vm: macOS-12 |
Tom Rini | e0c84c8 | 2024-08-21 09:41:20 -0600 | [diff] [blame] | 5 | ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024 |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 6 | # Add '-u 0' options for Azure pipelines, otherwise we get "permission |
| 7 | # denied" error when it tries to "useradd -m -u 1001 vsts_azpcontainer", |
| 8 | # since our $(ci_runner_image) user is not root. |
| 9 | container_option: -u 0 |
| 10 | work_dir: /u |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 11 | # We define all of these as variables so we can easily reference them twice |
Tom Rini | ed968dc | 2024-06-18 08:18:50 -0600 | [diff] [blame] | 12 | am33xx_kirkwood_ls1_mvebu_omap: "am33xx kirkwood ls1 mvebu omap -x siemens,freescale" |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 13 | amlogic_bcm_boundary_engicam_siemens_technexion_oradex: "amlogic bcm boundary engicam siemens technexion toradex -x mips" |
Tom Rini | ed968dc | 2024-06-18 08:18:50 -0600 | [diff] [blame] | 14 | arm_nxp_minus_imx_and_at91: "at91 freescale -x powerpc,m68k,imx,mx" |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 15 | imx: "mx imx -x boundary,engicam,technexion,toradex" |
| 16 | rk: "rk" |
| 17 | sunxi: "sunxi" |
| 18 | powerpc: "powerpc" |
| 19 | arm_catch_all: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex" |
| 20 | aarch64_catch_all: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex" |
Tom Rini | da1811b | 2024-06-18 08:18:49 -0600 | [diff] [blame] | 21 | everything_but_arm_and_powerpc: "arc m68k microblaze mips nios2 riscv sandbox sh x86 xtensa -x arm,powerpc" |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 22 | |
Tom Rini | 4c268a6 | 2022-01-11 19:14:28 -0500 | [diff] [blame] | 23 | stages: |
| 24 | - stage: testsuites |
| 25 | jobs: |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 26 | - job: tools_only_windows |
| 27 | displayName: 'Ensure host tools build for Windows' |
| 28 | pool: |
| 29 | vmImage: $(windows_vm) |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 30 | steps: |
Bin Meng | 31c3bce | 2020-07-28 02:06:44 -0700 | [diff] [blame] | 31 | - powershell: | |
Bin Meng | bd97b0d | 2021-06-22 07:33:21 +0800 | [diff] [blame] | 32 | (New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2021-06-04/msys2-base-x86_64-20210604.sfx.exe", "sfx.exe") |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 33 | displayName: 'Install MSYS2' |
| 34 | - script: | |
Bin Meng | 31c3bce | 2020-07-28 02:06:44 -0700 | [diff] [blame] | 35 | sfx.exe -y -o%CD:~0,2%\ |
Tom Rini | c7f4e6a | 2022-05-03 08:30:14 -0400 | [diff] [blame] | 36 | %CD:~0,2%\msys64\usr\bin\bash -lc " " |
| 37 | %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu" |
| 38 | %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu" |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 39 | displayName: 'Update MSYS2' |
| 40 | - script: | |
AKASHI Takahiro | ba21243 | 2022-02-09 19:10:39 +0900 | [diff] [blame] | 41 | %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel libgnutls-devel libutil-linux-devel" |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 42 | displayName: 'Install Toolchain' |
| 43 | - script: | |
Tom Rini | ea79bb7 | 2022-11-19 18:45:43 -0500 | [diff] [blame] | 44 | echo make tools-only_defconfig tools-only > build-tools.sh |
Bin Meng | 8c65515 | 2020-07-28 02:06:42 -0700 | [diff] [blame] | 45 | %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh" |
Bin Meng | c7072d1 | 2019-10-27 05:19:48 -0700 | [diff] [blame] | 46 | displayName: 'Build Host Tools' |
| 47 | env: |
| 48 | # Tell MSYS2 we need a POSIX emulation layer |
| 49 | MSYSTEM: MSYS |
| 50 | # Tell MSYS2 not to ‘cd’ our startup directory to HOME |
| 51 | CHERE_INVOKING: yes |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 52 | |
Tom Rini | ab1e85b | 2020-05-26 20:39:03 -0400 | [diff] [blame] | 53 | - job: tools_only_macOS |
| 54 | displayName: 'Ensure host tools build for macOS X' |
| 55 | pool: |
| 56 | vmImage: $(macos_vm) |
| 57 | steps: |
AKASHI Takahiro | ba21243 | 2022-02-09 19:10:39 +0900 | [diff] [blame] | 58 | - script: brew install make ossp-uuid |
Tom Rini | ab1e85b | 2020-05-26 20:39:03 -0400 | [diff] [blame] | 59 | displayName: Brew install dependencies |
| 60 | - script: | |
Tom Rini | ea79bb7 | 2022-11-19 18:45:43 -0500 | [diff] [blame] | 61 | gmake tools-only_config tools-only \ |
Tom Rini | ab1e85b | 2020-05-26 20:39:03 -0400 | [diff] [blame] | 62 | HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \ |
| 63 | HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \ |
| 64 | -j$(sysctl -n hw.logicalcpu) |
| 65 | displayName: 'Perform tools-only build' |
| 66 | |
Tom Rini | 1cc7e4c | 2022-12-04 10:14:15 -0500 | [diff] [blame] | 67 | - job: check_for_new_CONFIG_symbols_outside_Kconfig |
| 68 | displayName: 'Check for new CONFIG symbols outside Kconfig' |
Tom Rini | bdfa376 | 2021-12-14 13:36:41 -0500 | [diff] [blame] | 69 | pool: |
| 70 | vmImage: $(ubuntu_vm) |
| 71 | container: |
| 72 | image: $(ci_runner_image) |
| 73 | options: $(container_option) |
| 74 | steps: |
Tom Rini | 1cc7e4c | 2022-12-04 10:14:15 -0500 | [diff] [blame] | 75 | # If grep succeeds and finds a match the test fails as we should |
| 76 | # have no matches. |
| 77 | - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_' |
Tom Rini | 8f7345c | 2023-01-10 11:19:46 -0500 | [diff] [blame] | 78 | :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h |
Raymond Mao | dc52054 | 2024-10-03 14:50:14 -0700 | [diff] [blame] | 79 | :^include/linux/kconfig.h :^tools/ :^dts/upstream/ |
| 80 | :^lib/mbedtls/external :^lib/mbedtls/mbedtls_def_config.h && |
Sumit Garg | 8d81468 | 2024-02-22 15:05:57 +0530 | [diff] [blame] | 81 | exit 1 || exit 0 |
Tom Rini | bdfa376 | 2021-12-14 13:36:41 -0500 | [diff] [blame] | 82 | |
Heinrich Schuchardt | 54de241 | 2023-01-12 20:30:58 +0100 | [diff] [blame] | 83 | - job: docs |
| 84 | displayName: 'Build documentation' |
Heinrich Schuchardt | fbf2bf9 | 2020-02-21 18:24:02 +0100 | [diff] [blame] | 85 | pool: |
| 86 | vmImage: $(ubuntu_vm) |
| 87 | container: |
| 88 | image: $(ci_runner_image) |
| 89 | options: $(container_option) |
| 90 | steps: |
Heinrich Schuchardt | 846abe4 | 2021-01-25 22:06:25 +0100 | [diff] [blame] | 91 | - script: | |
| 92 | virtualenv -p /usr/bin/python3 /tmp/venvhtml |
| 93 | . /tmp/venvhtml/bin/activate |
| 94 | pip install -r doc/sphinx/requirements.txt |
Heinrich Schuchardt | 2e0c8e6 | 2023-05-02 05:04:11 +0200 | [diff] [blame] | 95 | make htmldocs KDOC_WERROR=1 |
Heinrich Schuchardt | 54de241 | 2023-01-12 20:30:58 +0100 | [diff] [blame] | 96 | make infodocs |
Heinrich Schuchardt | fbf2bf9 | 2020-02-21 18:24:02 +0100 | [diff] [blame] | 97 | |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 98 | - job: maintainers |
| 99 | displayName: 'Ensure all configs have MAINTAINERS entries' |
| 100 | pool: |
| 101 | vmImage: $(ubuntu_vm) |
| 102 | container: |
| 103 | image: $(ci_runner_image) |
| 104 | options: $(container_option) |
| 105 | steps: |
| 106 | - script: | |
Tom Rini | ca00ac6 | 2023-10-23 11:37:47 -0400 | [diff] [blame] | 107 | ./tools/buildman/buildman --maintainer-check |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 108 | |
| 109 | - job: tools_only |
Tom Rini | 8244f00 | 2023-08-20 13:31:28 -0400 | [diff] [blame] | 110 | displayName: 'Ensure host tools and env tools build' |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 111 | pool: |
| 112 | vmImage: $(ubuntu_vm) |
| 113 | container: |
| 114 | image: $(ci_runner_image) |
| 115 | options: $(container_option) |
| 116 | steps: |
| 117 | - script: | |
| 118 | make tools-only_config tools-only -j$(nproc) |
Tom Rini | 8244f00 | 2023-08-20 13:31:28 -0400 | [diff] [blame] | 119 | make mrproper |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 120 | make tools-only_config envtools -j$(nproc) |
| 121 | |
| 122 | - job: utils |
Tom Rini | 0b3e0c4 | 2020-03-11 18:11:15 -0400 | [diff] [blame] | 123 | displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites' |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 124 | pool: |
| 125 | vmImage: $(ubuntu_vm) |
| 126 | steps: |
| 127 | - script: | |
Tom Rini | d1ed446 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 128 | cat << "EOF" > build.sh |
| 129 | cd $(work_dir) |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 130 | git config --global user.name "Azure Pipelines" |
| 131 | git config --global user.email bmeng.cn@gmail.com |
Tom Rini | d1ed446 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 132 | git config --global --add safe.directory $(work_dir) |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 133 | export USER=azure |
Tom Rini | 6c88310 | 2020-02-11 12:41:14 -0500 | [diff] [blame] | 134 | virtualenv -p /usr/bin/python3 /tmp/venv |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 135 | . /tmp/venv/bin/activate |
Tom Rini | 70c66dd | 2021-02-26 07:52:29 -0500 | [diff] [blame] | 136 | pip install -r test/py/requirements.txt |
Tom Rini | 95f1c6cb | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 137 | pip install -r tools/buildman/requirements.txt |
Tom Rini | 0808692 | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 138 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 139 | export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt |
| 140 | export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH} |
Tom Rini | 0808692 | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 141 | ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only |
Tom Rini | d1ed446 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 142 | set -ex |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 143 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test |
| 144 | ./tools/buildman/buildman -t |
| 145 | ./tools/dtoc/dtoc -t |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 146 | ./tools/patman/patman test |
Tom Rini | 0b3e0c4 | 2020-03-11 18:11:15 -0400 | [diff] [blame] | 147 | make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 148 | EOF |
| 149 | cat build.sh |
| 150 | # We cannot use "container" like other jobs above, as buildman |
| 151 | # seems to hang forever with pre-configured "container" environment |
| 152 | docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh |
| 153 | |
Simon Glass | f690326 | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 154 | - job: pylint |
| 155 | displayName: Check for any pylint regressions |
| 156 | pool: |
| 157 | vmImage: $(ubuntu_vm) |
| 158 | container: |
| 159 | image: $(ci_runner_image) |
| 160 | options: $(container_option) |
| 161 | steps: |
| 162 | - script: | |
Tom Rini | d1ed446 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 163 | git config --global --add safe.directory $(work_dir) |
Simon Glass | f690326 | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 164 | export USER=azure |
| 165 | pip install -r test/py/requirements.txt |
Tom Rini | 95f1c6cb | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 166 | pip install -r tools/buildman/requirements.txt |
Tom Rini | 090ff81 | 2022-03-25 08:19:09 -0400 | [diff] [blame] | 167 | pip install asteval pylint==2.12.2 pyopenssl |
Simon Glass | f690326 | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 168 | export PATH=${PATH}:~/.local/bin |
| 169 | echo "[MASTER]" >> .pylintrc |
| 170 | echo "load-plugins=pylint.extensions.docparams" >> .pylintrc |
Tom Rini | 0808692 | 2023-08-10 12:52:24 -0400 | [diff] [blame] | 171 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only |
| 172 | ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only |
Tom Rini | d1ed446 | 2022-08-09 21:08:54 -0400 | [diff] [blame] | 173 | set -ex |
Simon Glass | f690326 | 2022-02-11 13:23:26 -0700 | [diff] [blame] | 174 | pylint --version |
| 175 | export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt |
| 176 | make pylint_err |
| 177 | |
Simon Glass | f96763a | 2023-02-13 08:56:39 -0700 | [diff] [blame] | 178 | - job: check_for_pre_schema_tags |
| 179 | displayName: 'Check for pre-schema driver model tags' |
| 180 | pool: |
| 181 | vmImage: $(ubuntu_vm) |
| 182 | container: |
| 183 | image: $(ci_runner_image) |
| 184 | options: $(container_option) |
| 185 | steps: |
| 186 | # If grep succeeds and finds a match the test fails as we should |
| 187 | # have no matches. |
| 188 | - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0 |
| 189 | |
Simon Glass | 5dd13b9 | 2023-02-23 18:18:24 -0700 | [diff] [blame] | 190 | - job: check_packing_of_python_tools |
| 191 | displayName: 'Check we can package the Python tools' |
| 192 | pool: |
| 193 | vmImage: $(ubuntu_vm) |
| 194 | container: |
| 195 | image: $(ci_runner_image) |
| 196 | options: $(container_option) |
| 197 | steps: |
| 198 | - script: make pip |
| 199 | |
Tom Rini | 8c741cf | 2024-06-18 08:18:51 -0600 | [diff] [blame] | 200 | - job: count_built_machines |
| 201 | displayName: 'Ensure we build all possible machines' |
| 202 | pool: |
| 203 | vmImage: $(ubuntu_vm) |
| 204 | container: |
| 205 | image: $(ci_runner_image) |
| 206 | options: $(container_option) |
| 207 | steps: |
| 208 | - script: | |
| 209 | BMANARGS="-o /tmp --dry-run -v" |
| 210 | # First get the total number of boards |
| 211 | total=$(tools/buildman/buildman ${BMANARGS} | grep "Total boards to build for each commit" | cut -d ' ' -f 8) |
| 212 | # Now build up the list of what each job built. |
| 213 | built="$(tools/buildman/buildman ${BMANARGS} $(am33xx_kirkwood_ls1_mvebu_omap) | grep '^ ')" |
| 214 | built="$built $(tools/buildman/buildman ${BMANARGS} $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) | grep '^ ')" |
| 215 | built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_nxp_minus_imx_and_at91) | grep '^ ')" |
| 216 | built="$built $(tools/buildman/buildman ${BMANARGS} $(imx) | grep '^ ')" |
| 217 | built="$built $(tools/buildman/buildman ${BMANARGS} $(rk) | grep '^ ')" |
| 218 | built="$built $(tools/buildman/buildman ${BMANARGS} $(sunxi) | grep '^ ')" |
| 219 | built="$built $(tools/buildman/buildman ${BMANARGS} $(powerpc) | grep '^ ')" |
| 220 | built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_catch_all) | grep '^ ')" |
| 221 | built="$built $(tools/buildman/buildman ${BMANARGS} $(aarch64_catch_all) | grep '^ ')" |
| 222 | built="$built $(tools/buildman/buildman ${BMANARGS} $(everything_but_arm_and_powerpc) | grep '^ ')" |
| 223 | # Finally see how many machines that is. |
| 224 | actual=$(tools/buildman/buildman ${BMANARGS} $built | grep "Total boards to build for each commit" | cut -d ' ' -f 8) |
| 225 | echo We would build a total of $actual out of $total platforms this CI run |
| 226 | [ $actual -eq $total ] && exit 0 || exit 1 |
| 227 | |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 228 | - job: create_test_py_wrapper_script |
| 229 | displayName: 'Create and stage a wrapper for test.py runs' |
| 230 | pool: |
| 231 | vmImage: $(ubuntu_vm) |
| 232 | steps: |
| 233 | - checkout: none |
| 234 | - script: | |
| 235 | cat << EOF > test.sh |
| 236 | #!/bin/bash |
| 237 | set -ex |
| 238 | # the below corresponds to .gitlab-ci.yml "before_script" |
| 239 | cd \${WORK_DIR} |
| 240 | git config --global --add safe.directory \${WORK_DIR} |
Tom Rini | e9f9122 | 2024-07-05 08:07:00 -0600 | [diff] [blame] | 241 | git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks |
Jerome Forissier | de134d9 | 2024-10-16 12:04:14 +0200 | [diff] [blame^] | 242 | # qemu_arm64_lwip_defconfig is the same as qemu_arm64 but with NET_LWIP enabled. |
| 243 | # The test config and the boardenv file from qemu_arm64 can be re-used so create symlinks |
| 244 | ln -s conf.qemu_arm64_na /tmp/uboot-test-hooks/bin/travis-ci/conf.qemu_arm64_lwip_na |
| 245 | ln -s u_boot_boardenv_qemu_arm64_na.py /tmp/uboot-test-hooks/py/travis-ci/u_boot_boardenv_qemu_arm64_lwip_na.py |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 246 | ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\` |
| 247 | ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\` |
| 248 | grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd |
| 249 | grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd |
| 250 | if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then |
Heinrich Schuchardt | 29999e4 | 2023-10-25 00:15:43 +0200 | [diff] [blame] | 251 | 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; |
| 252 | export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin; |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 253 | fi |
| 254 | if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then |
Heinrich Schuchardt | 29999e4 | 2023-10-25 00:15:43 +0200 | [diff] [blame] | 255 | 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; |
| 256 | export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin; |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 257 | fi |
| 258 | # the below corresponds to .gitlab-ci.yml "script" |
| 259 | cd \${WORK_DIR} |
| 260 | export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD} |
| 261 | if [ -n "\${BUILD_ENV}" ]; then |
| 262 | export \${BUILD_ENV}; |
| 263 | fi |
| 264 | pip install -r tools/buildman/requirements.txt |
| 265 | tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE} |
| 266 | cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/ |
| 267 | cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/ |
| 268 | cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi |
| 269 | cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi |
| 270 | cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi |
| 271 | # create sdcard / spi-nor images for sifive unleashed using genimage |
| 272 | if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then |
| 273 | mkdir -p root; |
| 274 | cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .; |
| 275 | cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .; |
| 276 | rm -rf tmp; |
| 277 | genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg; |
| 278 | cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/; |
| 279 | rm -rf tmp; |
| 280 | genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg; |
| 281 | cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/; |
| 282 | fi |
| 283 | if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then |
Tom Rini | d0296f6 | 2024-02-13 09:39:27 -0500 | [diff] [blame] | 284 | cp /opt/coreboot/coreboot.rom \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom; |
| 285 | /opt/coreboot/cbfstool \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom remove -n fallback/payload; |
| 286 | /opt/coreboot/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; |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 287 | fi |
| 288 | virtualenv -p /usr/bin/python3 /tmp/venv |
| 289 | . /tmp/venv/bin/activate |
| 290 | pip install -r test/py/requirements.txt |
| 291 | pip install pytest-azurepipelines |
| 292 | export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH} |
| 293 | export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci |
| 294 | # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not |
Tom Rini | 792dbc3 | 2024-06-27 07:43:20 -0600 | [diff] [blame] | 295 | ./test/py/test.py -ra -o cache_dir="\$UBOOT_TRAVIS_BUILD_DIR"/.pytest_cache --bd \${TEST_PY_BD} \${TEST_PY_ID} \${TEST_PY_TEST_SPEC:+"-k \${TEST_PY_TEST_SPEC}"} --build-dir "\$UBOOT_TRAVIS_BUILD_DIR" --report-dir "\$UBOOT_TRAVIS_BUILD_DIR" --junitxml=\$(System.DefaultWorkingDirectory)/results.xml |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 296 | # the below corresponds to .gitlab-ci.yml "after_script" |
| 297 | rm -rf /tmp/uboot-test-hooks /tmp/venv |
| 298 | EOF |
| 299 | - task: CopyFiles@2 |
| 300 | displayName: 'Copy test.sh for later usage' |
| 301 | inputs: |
| 302 | contents: 'test.sh' |
| 303 | targetFolder: '$(Build.ArtifactStagingDirectory)' |
| 304 | - publish: '$(Build.ArtifactStagingDirectory)/test.sh' |
| 305 | displayName: 'Publish test.sh' |
| 306 | artifact: testsh |
| 307 | |
Tom Rini | c28b715 | 2023-09-01 16:41:42 -0400 | [diff] [blame] | 308 | - stage: test_py_sandbox |
Tom Rini | 4c268a6 | 2022-01-11 19:14:28 -0500 | [diff] [blame] | 309 | jobs: |
Tom Rini | c28b715 | 2023-09-01 16:41:42 -0400 | [diff] [blame] | 310 | - job: test_py_sandbox |
| 311 | displayName: 'test.py for sandbox' |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 312 | pool: |
| 313 | vmImage: $(ubuntu_vm) |
| 314 | strategy: |
| 315 | matrix: |
| 316 | sandbox: |
| 317 | TEST_PY_BD: "sandbox" |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 318 | sandbox_asan: |
| 319 | TEST_PY_BD: "sandbox" |
| 320 | OVERRIDE: "-a ASAN" |
| 321 | TEST_PY_TEST_SPEC: "version" |
Tom Rini | 99a1bb3 | 2019-11-06 19:30:47 -0500 | [diff] [blame] | 322 | sandbox_clang: |
| 323 | TEST_PY_BD: "sandbox" |
Tom Rini | e752a3a | 2024-03-10 15:59:28 -0400 | [diff] [blame] | 324 | OVERRIDE: "-O clang-17" |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 325 | sandbox_clang_asan: |
| 326 | TEST_PY_BD: "sandbox" |
Tom Rini | e752a3a | 2024-03-10 15:59:28 -0400 | [diff] [blame] | 327 | OVERRIDE: "-O clang-17 -a ASAN" |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 328 | TEST_PY_TEST_SPEC: "version" |
Tom Rini | 8d088b6 | 2023-09-01 16:41:43 -0400 | [diff] [blame] | 329 | sandbox64: |
| 330 | TEST_PY_BD: "sandbox64" |
| 331 | sandbox64_clang: |
| 332 | TEST_PY_BD: "sandbox64" |
Tom Rini | e752a3a | 2024-03-10 15:59:28 -0400 | [diff] [blame] | 333 | OVERRIDE: "-O clang-17" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 334 | sandbox_spl: |
| 335 | TEST_PY_BD: "sandbox_spl" |
Simon Glass | 36a69e1 | 2020-10-25 20:38:36 -0600 | [diff] [blame] | 336 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
Simon Glass | a2a4eea | 2022-04-30 00:56:57 -0600 | [diff] [blame] | 337 | sandbox_vpl: |
| 338 | TEST_PY_BD: "sandbox_vpl" |
Simon Glass | 4e5e7f4 | 2023-04-02 14:01:26 +1200 | [diff] [blame] | 339 | TEST_PY_TEST_SPEC: "vpl or test_spl" |
Simon Glass | 492f0b0 | 2021-03-15 17:25:34 +1300 | [diff] [blame] | 340 | sandbox_noinst: |
| 341 | TEST_PY_BD: "sandbox_noinst" |
| 342 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
Sean Anderson | f65dcc0 | 2023-10-14 16:47:59 -0400 | [diff] [blame] | 343 | sandbox_noinst_load_fit_full: |
| 344 | TEST_PY_BD: "sandbox_noinst" |
| 345 | TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl" |
| 346 | OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 347 | sandbox_flattree: |
| 348 | TEST_PY_BD: "sandbox_flattree" |
Simon Glass | c2f0190 | 2023-01-15 14:16:00 -0700 | [diff] [blame] | 349 | sandbox_trace: |
| 350 | TEST_PY_BD: "sandbox" |
| 351 | BUILD_ENV: "FTRACE=1 NO_LTO=1" |
| 352 | TEST_PY_TEST_SPEC: "trace" |
Sughosh Ganu | 0c3783e | 2023-08-22 23:10:02 +0530 | [diff] [blame] | 353 | OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000" |
Tom Rini | c28b715 | 2023-09-01 16:41:42 -0400 | [diff] [blame] | 354 | steps: |
| 355 | - download: current |
| 356 | artifact: testsh |
| 357 | - script: | |
| 358 | # make current directory writeable to uboot user inside the container |
| 359 | # as sandbox testing need create files like spi flash images, etc. |
| 360 | # (TODO: clean up this in the future) |
| 361 | chmod 777 . |
| 362 | chmod 755 $(Pipeline.Workspace)/testsh/test.sh |
| 363 | # Filesystem tests need extra docker args to run |
| 364 | set -- |
| 365 | # mount -o loop needs the loop devices |
| 366 | if modprobe loop; then |
| 367 | for d in $(find /dev -maxdepth 1 -name 'loop*'); do |
| 368 | set -- "$@" --device $d:$d |
| 369 | done |
| 370 | fi |
| 371 | # Needed for mount syscall (for guestmount as well) |
| 372 | set -- "$@" --cap-add SYS_ADMIN |
| 373 | # Default apparmor profile denies mounts |
| 374 | set -- "$@" --security-opt apparmor=unconfined |
| 375 | # Some tests using libguestfs-tools need the fuse device to run |
| 376 | docker run "$@" --device /dev/fuse:/dev/fuse \ |
| 377 | -v $PWD:$(work_dir) \ |
| 378 | -v $(Pipeline.Workspace):$(Pipeline.Workspace) \ |
Tom Rini | 792dbc3 | 2024-06-27 07:43:20 -0600 | [diff] [blame] | 379 | -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \ |
Tom Rini | c28b715 | 2023-09-01 16:41:42 -0400 | [diff] [blame] | 380 | -e WORK_DIR="${WORK_DIR}" \ |
| 381 | -e TEST_PY_BD="${TEST_PY_BD}" \ |
| 382 | -e TEST_PY_ID="${TEST_PY_ID}" \ |
| 383 | -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \ |
| 384 | -e OVERRIDE="${OVERRIDE}" \ |
| 385 | -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \ |
| 386 | $(Pipeline.Workspace)/testsh/test.sh |
Tom Rini | 792dbc3 | 2024-06-27 07:43:20 -0600 | [diff] [blame] | 387 | - task: PublishTestResults@2 |
| 388 | inputs: |
| 389 | testResultsFormat: 'JUnit' |
| 390 | testResultsFiles: 'results.xml' |
Tom Rini | c28b715 | 2023-09-01 16:41:42 -0400 | [diff] [blame] | 391 | |
| 392 | - stage: test_py_qemu |
| 393 | jobs: |
| 394 | - job: test_py_qemu |
| 395 | displayName: 'test.py for QEMU platforms' |
| 396 | pool: |
| 397 | vmImage: $(ubuntu_vm) |
| 398 | strategy: |
| 399 | matrix: |
Simon Glass | 13e1fa0 | 2022-01-21 10:23:01 -0700 | [diff] [blame] | 400 | coreboot: |
| 401 | TEST_PY_BD: "coreboot" |
| 402 | TEST_PY_ID: "--id qemu" |
| 403 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 404 | evb_ast2500: |
| 405 | TEST_PY_BD: "evb-ast2500" |
| 406 | TEST_PY_ID: "--id qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 407 | TEST_PY_TEST_SPEC: "not sleep" |
Joel Stanley | 3f21e1b | 2022-06-29 16:35:25 +0930 | [diff] [blame] | 408 | evb_ast2600: |
| 409 | TEST_PY_BD: "evb-ast2600" |
| 410 | TEST_PY_ID: "--id qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 411 | TEST_PY_TEST_SPEC: "not sleep" |
Kristian Amlie | 8f8a299 | 2021-09-07 08:37:51 +0200 | [diff] [blame] | 412 | vexpress_ca9x4: |
| 413 | TEST_PY_BD: "vexpress_ca9x4" |
| 414 | TEST_PY_ID: "--id qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 415 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 416 | integratorcp_cm926ejs: |
| 417 | TEST_PY_BD: "integratorcp_cm926ejs" |
| 418 | TEST_PY_ID: "--id qemu" |
| 419 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 420 | qemu_arm: |
| 421 | TEST_PY_BD: "qemu_arm" |
| 422 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 423 | qemu_arm64: |
| 424 | TEST_PY_BD: "qemu_arm64" |
| 425 | TEST_PY_TEST_SPEC: "not sleep" |
Jerome Forissier | de134d9 | 2024-10-16 12:04:14 +0200 | [diff] [blame^] | 426 | qemu_arm64_lwip: |
| 427 | TEST_PY_BD: "qemu_arm64_lwip" |
| 428 | TEST_PY_TEST_SPEC: "test_net_dhcp or test_net_ping or test_net_tftpboot" |
Marek Vasut | 07240eb | 2023-03-23 01:22:41 +0100 | [diff] [blame] | 429 | qemu_m68k: |
| 430 | TEST_PY_BD: "M5208EVBE" |
| 431 | TEST_PY_ID: "--id qemu" |
| 432 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 433 | OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR" |
Daniel Schwierzeck | 879bc74 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 434 | qemu_malta: |
| 435 | TEST_PY_BD: "malta" |
| 436 | TEST_PY_ID: "--id qemu" |
| 437 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 438 | qemu_maltael: |
| 439 | TEST_PY_BD: "maltael" |
| 440 | TEST_PY_ID: "--id qemu" |
| 441 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 442 | qemu_malta64: |
| 443 | TEST_PY_BD: "malta64" |
| 444 | TEST_PY_ID: "--id qemu" |
| 445 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
| 446 | qemu_malta64el: |
| 447 | TEST_PY_BD: "malta64el" |
| 448 | TEST_PY_ID: "--id qemu" |
| 449 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 450 | qemu_ppce500: |
| 451 | TEST_PY_BD: "qemu-ppce500" |
| 452 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | aeb3ea4 | 2020-03-28 07:25:27 -0700 | [diff] [blame] | 453 | qemu_riscv32: |
| 454 | TEST_PY_BD: "qemu-riscv32" |
| 455 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 456 | qemu_riscv64: |
| 457 | TEST_PY_BD: "qemu-riscv64" |
| 458 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | b68d9d6 | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 459 | qemu_riscv32_spl: |
| 460 | TEST_PY_BD: "qemu-riscv32_spl" |
| 461 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | b68d9d6 | 2020-03-28 07:25:29 -0700 | [diff] [blame] | 462 | qemu_riscv64_spl: |
| 463 | TEST_PY_BD: "qemu-riscv64_spl" |
| 464 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 465 | qemu_x86: |
| 466 | TEST_PY_BD: "qemu-x86" |
| 467 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 468 | qemu_x86_64: |
| 469 | TEST_PY_BD: "qemu-x86_64" |
| 470 | TEST_PY_TEST_SPEC: "not sleep" |
Jiaxun Yang | acc795b | 2024-06-18 14:56:11 +0100 | [diff] [blame] | 471 | qemu_xtensa_dc233c: |
| 472 | TEST_PY_BD: "qemu-xtensa-dc233c" |
| 473 | TEST_PY_TEST_SPEC: "not sleep and not efi" |
Marek Vasut | fc5a9d7 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 474 | r2dplus_i82557c: |
| 475 | TEST_PY_BD: "r2dplus" |
| 476 | TEST_PY_ID: "--id i82557c_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 477 | TEST_PY_TEST_SPEC: "not sleep" |
Marek Vasut | fc5a9d7 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 478 | r2dplus_pcnet: |
| 479 | TEST_PY_BD: "r2dplus" |
| 480 | TEST_PY_ID: "--id pcnet_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 481 | TEST_PY_TEST_SPEC: "not sleep" |
Marek Vasut | fc5a9d7 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 482 | r2dplus_rtl8139: |
| 483 | TEST_PY_BD: "r2dplus" |
| 484 | TEST_PY_ID: "--id rtl8139_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 485 | TEST_PY_TEST_SPEC: "not sleep" |
Marek Vasut | fc5a9d7 | 2020-09-14 21:55:58 +0200 | [diff] [blame] | 486 | r2dplus_tulip: |
| 487 | TEST_PY_BD: "r2dplus" |
| 488 | TEST_PY_ID: "--id tulip_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 489 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | 0ae4106 | 2021-08-26 23:33:35 +0800 | [diff] [blame] | 490 | sifive_unleashed_sdcard: |
| 491 | TEST_PY_BD: "sifive_unleashed" |
| 492 | TEST_PY_ID: "--id sdcard_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 493 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | 0ae4106 | 2021-08-26 23:33:35 +0800 | [diff] [blame] | 494 | sifive_unleashed_spi-nor: |
| 495 | TEST_PY_BD: "sifive_unleashed" |
| 496 | TEST_PY_ID: "--id spi-nor_qemu" |
Tom Rini | 5692b9c | 2024-10-15 12:28:26 -0600 | [diff] [blame] | 497 | TEST_PY_TEST_SPEC: "not sleep" |
Michal Simek | f8834fd | 2020-02-13 15:03:29 +0100 | [diff] [blame] | 498 | xilinx_zynq_virt: |
| 499 | TEST_PY_BD: "xilinx_zynq_virt" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 500 | TEST_PY_ID: "--id qemu" |
| 501 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 502 | xilinx_versal_virt: |
| 503 | TEST_PY_BD: "xilinx_versal_virt" |
| 504 | TEST_PY_ID: "--id qemu" |
| 505 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 506 | xtfpga: |
| 507 | TEST_PY_BD: "xtfpga" |
| 508 | TEST_PY_ID: "--id qemu" |
| 509 | TEST_PY_TEST_SPEC: "not sleep" |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 510 | steps: |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 511 | - download: current |
| 512 | artifact: testsh |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 513 | - script: | |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 514 | # make current directory writeable to uboot user inside the container |
| 515 | # as sandbox testing need create files like spi flash images, etc. |
| 516 | # (TODO: clean up this in the future) |
| 517 | chmod 777 . |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 518 | chmod 755 $(Pipeline.Workspace)/testsh/test.sh |
Alper Nebi Yasak | 6fb91f6 | 2021-06-21 21:51:55 +0300 | [diff] [blame] | 519 | # Some tests using libguestfs-tools need the fuse device to run |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 520 | docker run "$@" --device /dev/fuse:/dev/fuse \ |
| 521 | -v $PWD:$(work_dir) \ |
| 522 | -v $(Pipeline.Workspace):$(Pipeline.Workspace) \ |
Tom Rini | 792dbc3 | 2024-06-27 07:43:20 -0600 | [diff] [blame] | 523 | -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \ |
Tom Rini | 63c0ce8 | 2023-09-01 16:41:41 -0400 | [diff] [blame] | 524 | -e WORK_DIR="${WORK_DIR}" \ |
| 525 | -e TEST_PY_BD="${TEST_PY_BD}" \ |
| 526 | -e TEST_PY_ID="${TEST_PY_ID}" \ |
| 527 | -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \ |
| 528 | -e OVERRIDE="${OVERRIDE}" \ |
| 529 | -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \ |
| 530 | $(Pipeline.Workspace)/testsh/test.sh |
Tom Rini | 6acc019 | 2023-07-11 22:33:03 -0400 | [diff] [blame] | 531 | retryCountOnTaskFailure: 2 # QEMU may be too slow, etc. |
Tom Rini | 792dbc3 | 2024-06-27 07:43:20 -0600 | [diff] [blame] | 532 | - task: PublishTestResults@2 |
| 533 | inputs: |
| 534 | testResultsFormat: 'JUnit' |
| 535 | testResultsFiles: 'results.xml' |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 536 | |
Tom Rini | 4c268a6 | 2022-01-11 19:14:28 -0500 | [diff] [blame] | 537 | - stage: world_build |
| 538 | jobs: |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 539 | - job: build_the_world |
Tom Rini | 88a3397 | 2023-08-20 13:31:26 -0400 | [diff] [blame] | 540 | timeoutInMinutes: 0 # Use the maximum allowed |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 541 | displayName: 'Build the World' |
| 542 | pool: |
| 543 | vmImage: $(ubuntu_vm) |
| 544 | strategy: |
Tom Rini | 1e844e6 | 2024-06-18 08:18:47 -0600 | [diff] [blame] | 545 | # We split the world up in to 10 jobs as we can have at most 10 |
| 546 | # parallel jobs going on the free tier of Azure. |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 547 | matrix: |
Tom Rini | ed968dc | 2024-06-18 08:18:50 -0600 | [diff] [blame] | 548 | am33xx_kirkwood_ls1_mvebu_omap: |
| 549 | BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap) |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 550 | amlogic_bcm_boundary_engicam_siemens_technexion_oradex: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 551 | BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) |
Tom Rini | ed968dc | 2024-06-18 08:18:50 -0600 | [diff] [blame] | 552 | arm_nxp_minus_imx_and_at91: |
| 553 | BUILDMAN: $(arm_nxp_minus_imx_and_at91) |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 554 | imx: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 555 | BUILDMAN: $(imx) |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 556 | rk: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 557 | BUILDMAN: $(rk) |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 558 | sunxi: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 559 | BUILDMAN: $(sunxi) |
Tom Rini | fdb677d | 2022-08-09 21:08:52 -0400 | [diff] [blame] | 560 | powerpc: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 561 | BUILDMAN: $(powerpc) |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 562 | arm_catch_all: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 563 | BUILDMAN: $(arm_catch_all) |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 564 | aarch64_catch_all: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 565 | BUILDMAN: $(aarch64_catch_all) |
Tom Rini | 8b3107a | 2023-08-20 13:31:27 -0400 | [diff] [blame] | 566 | everything_but_arm_and_powerpc: |
Tom Rini | 3c2b235 | 2024-06-18 08:18:48 -0600 | [diff] [blame] | 567 | BUILDMAN: $(everything_but_arm_and_powerpc) |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 568 | steps: |
| 569 | - script: | |
| 570 | cat << EOF > build.sh |
| 571 | set -ex |
| 572 | cd ${WORK_DIR} |
| 573 | # make environment variables available as tests are running inside a container |
| 574 | export BUILDMAN="${BUILDMAN}" |
Tom Rini | e0f979b | 2022-11-21 12:52:40 -0500 | [diff] [blame] | 575 | git config --global --add safe.directory ${WORK_DIR} |
Tom Rini | 95f1c6cb | 2023-07-22 00:14:46 +0530 | [diff] [blame] | 576 | pip install -r tools/buildman/requirements.txt |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 577 | EOF |
| 578 | cat << "EOF" >> build.sh |
| 579 | if [[ "${BUILDMAN}" != "" ]]; then |
| 580 | ret=0; |
Tom Rini | 93ebd46 | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 581 | tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?; |
Simon Glass | da49935 | 2020-03-18 09:42:57 -0600 | [diff] [blame] | 582 | if [[ $ret -ne 0 ]]; then |
Simon Glass | ad8eaed | 2020-03-18 09:42:53 -0600 | [diff] [blame] | 583 | tools/buildman/buildman -o /tmp -seP ${BUILDMAN}; |
Bin Meng | ddaa6b1 | 2019-10-28 07:25:03 -0700 | [diff] [blame] | 584 | exit $ret; |
| 585 | fi; |
| 586 | fi |
| 587 | EOF |
| 588 | cat build.sh |
| 589 | docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh |