blob: 2881851ecf3b5eb294146eaeff14219c46919e4e [file] [log] [blame]
Bin Mengc7072d12019-10-27 05:19:48 -07001variables:
Tom Rinid5f27cb2021-10-31 13:24:42 -04002 windows_vm: windows-2019
Tom Rini9f151fe2022-08-08 22:44:45 -04003 ubuntu_vm: ubuntu-22.04
Tom Rini72d5de52022-07-27 11:10:24 -04004 macos_vm: macOS-12
Tom Rinie0c84c82024-08-21 09:41:20 -06005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024
Bin Mengddaa6b12019-10-28 07:25:03 -07006 # 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 Rini3c2b2352024-06-18 08:18:48 -060011 # We define all of these as variables so we can easily reference them twice
Tom Rinied968dc2024-06-18 08:18:50 -060012 am33xx_kirkwood_ls1_mvebu_omap: "am33xx kirkwood ls1 mvebu omap -x siemens,freescale"
Tom Rini3c2b2352024-06-18 08:18:48 -060013 amlogic_bcm_boundary_engicam_siemens_technexion_oradex: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
Tom Rinied968dc2024-06-18 08:18:50 -060014 arm_nxp_minus_imx_and_at91: "at91 freescale -x powerpc,m68k,imx,mx"
Tom Rini3c2b2352024-06-18 08:18:48 -060015 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 Rinida1811b2024-06-18 08:18:49 -060021 everything_but_arm_and_powerpc: "arc m68k microblaze mips nios2 riscv sandbox sh x86 xtensa -x arm,powerpc"
Bin Mengc7072d12019-10-27 05:19:48 -070022
Tom Rini4c268a62022-01-11 19:14:28 -050023stages:
24- stage: testsuites
25 jobs:
Bin Mengc7072d12019-10-27 05:19:48 -070026 - job: tools_only_windows
27 displayName: 'Ensure host tools build for Windows'
28 pool:
29 vmImage: $(windows_vm)
Bin Mengc7072d12019-10-27 05:19:48 -070030 steps:
Bin Meng31c3bce2020-07-28 02:06:44 -070031 - powershell: |
Bin Mengbd97b0d2021-06-22 07:33:21 +080032 (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 Mengc7072d12019-10-27 05:19:48 -070033 displayName: 'Install MSYS2'
34 - script: |
Bin Meng31c3bce2020-07-28 02:06:44 -070035 sfx.exe -y -o%CD:~0,2%\
Tom Rinic7f4e6a2022-05-03 08:30:14 -040036 %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 Mengc7072d12019-10-27 05:19:48 -070039 displayName: 'Update MSYS2'
40 - script: |
AKASHI Takahiroba212432022-02-09 19:10:39 +090041 %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 Mengc7072d12019-10-27 05:19:48 -070042 displayName: 'Install Toolchain'
43 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050044 echo make tools-only_defconfig tools-only > build-tools.sh
Bin Meng8c655152020-07-28 02:06:42 -070045 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
Bin Mengc7072d12019-10-27 05:19:48 -070046 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 Mengddaa6b12019-10-28 07:25:03 -070052
Tom Riniab1e85b2020-05-26 20:39:03 -040053 - job: tools_only_macOS
54 displayName: 'Ensure host tools build for macOS X'
55 pool:
56 vmImage: $(macos_vm)
57 steps:
AKASHI Takahiroba212432022-02-09 19:10:39 +090058 - script: brew install make ossp-uuid
Tom Riniab1e85b2020-05-26 20:39:03 -040059 displayName: Brew install dependencies
60 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050061 gmake tools-only_config tools-only \
Tom Riniab1e85b2020-05-26 20:39:03 -040062 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 Rini1cc7e4c2022-12-04 10:14:15 -050067 - job: check_for_new_CONFIG_symbols_outside_Kconfig
68 displayName: 'Check for new CONFIG symbols outside Kconfig'
Tom Rinibdfa3762021-12-14 13:36:41 -050069 pool:
70 vmImage: $(ubuntu_vm)
71 container:
72 image: $(ci_runner_image)
73 options: $(container_option)
74 steps:
Tom Rini1cc7e4c2022-12-04 10:14:15 -050075 # 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 Rini8f7345c2023-01-10 11:19:46 -050078 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
Sumit Garg8d814682024-02-22 15:05:57 +053079 :^include/linux/kconfig.h :^tools/ :^dts/upstream/ &&
80 exit 1 || exit 0
Tom Rinibdfa3762021-12-14 13:36:41 -050081
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010082 - job: docs
83 displayName: 'Build documentation'
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010084 pool:
85 vmImage: $(ubuntu_vm)
86 container:
87 image: $(ci_runner_image)
88 options: $(container_option)
89 steps:
Heinrich Schuchardt846abe42021-01-25 22:06:25 +010090 - script: |
91 virtualenv -p /usr/bin/python3 /tmp/venvhtml
92 . /tmp/venvhtml/bin/activate
93 pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt2e0c8e62023-05-02 05:04:11 +020094 make htmldocs KDOC_WERROR=1
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010095 make infodocs
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010096
Bin Mengddaa6b12019-10-28 07:25:03 -070097 - job: maintainers
98 displayName: 'Ensure all configs have MAINTAINERS entries'
99 pool:
100 vmImage: $(ubuntu_vm)
101 container:
102 image: $(ci_runner_image)
103 options: $(container_option)
104 steps:
105 - script: |
Tom Rinica00ac62023-10-23 11:37:47 -0400106 ./tools/buildman/buildman --maintainer-check
Bin Mengddaa6b12019-10-28 07:25:03 -0700107
108 - job: tools_only
Tom Rini8244f002023-08-20 13:31:28 -0400109 displayName: 'Ensure host tools and env tools build'
Bin Mengddaa6b12019-10-28 07:25:03 -0700110 pool:
111 vmImage: $(ubuntu_vm)
112 container:
113 image: $(ci_runner_image)
114 options: $(container_option)
115 steps:
116 - script: |
117 make tools-only_config tools-only -j$(nproc)
Tom Rini8244f002023-08-20 13:31:28 -0400118 make mrproper
Bin Mengddaa6b12019-10-28 07:25:03 -0700119 make tools-only_config envtools -j$(nproc)
120
121 - job: utils
Tom Rini0b3e0c42020-03-11 18:11:15 -0400122 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengddaa6b12019-10-28 07:25:03 -0700123 pool:
124 vmImage: $(ubuntu_vm)
125 steps:
126 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400127 cat << "EOF" > build.sh
128 cd $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700129 git config --global user.name "Azure Pipelines"
130 git config --global user.email bmeng.cn@gmail.com
Tom Rinid1ed4462022-08-09 21:08:54 -0400131 git config --global --add safe.directory $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700132 export USER=azure
Tom Rini6c883102020-02-11 12:41:14 -0500133 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700134 . /tmp/venv/bin/activate
Tom Rini70c66dd2021-02-26 07:52:29 -0500135 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530136 pip install -r tools/buildman/requirements.txt
Tom Rini08086922023-08-10 12:52:24 -0400137 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
Bin Mengddaa6b12019-10-28 07:25:03 -0700138 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
139 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Tom Rini08086922023-08-10 12:52:24 -0400140 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400141 set -ex
Bin Mengddaa6b12019-10-28 07:25:03 -0700142 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
143 ./tools/buildman/buildman -t
144 ./tools/dtoc/dtoc -t
Simon Glass109e84e2020-07-05 21:41:55 -0600145 ./tools/patman/patman test
Tom Rini0b3e0c42020-03-11 18:11:15 -0400146 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengddaa6b12019-10-28 07:25:03 -0700147 EOF
148 cat build.sh
149 # We cannot use "container" like other jobs above, as buildman
150 # seems to hang forever with pre-configured "container" environment
151 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
152
Simon Glassf6903262022-02-11 13:23:26 -0700153 - job: pylint
154 displayName: Check for any pylint regressions
155 pool:
156 vmImage: $(ubuntu_vm)
157 container:
158 image: $(ci_runner_image)
159 options: $(container_option)
160 steps:
161 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400162 git config --global --add safe.directory $(work_dir)
Simon Glassf6903262022-02-11 13:23:26 -0700163 export USER=azure
164 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530165 pip install -r tools/buildman/requirements.txt
Tom Rini090ff812022-03-25 08:19:09 -0400166 pip install asteval pylint==2.12.2 pyopenssl
Simon Glassf6903262022-02-11 13:23:26 -0700167 export PATH=${PATH}:~/.local/bin
168 echo "[MASTER]" >> .pylintrc
169 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
Tom Rini08086922023-08-10 12:52:24 -0400170 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
171 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400172 set -ex
Simon Glassf6903262022-02-11 13:23:26 -0700173 pylint --version
174 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
175 make pylint_err
176
Simon Glassf96763a2023-02-13 08:56:39 -0700177 - job: check_for_pre_schema_tags
178 displayName: 'Check for pre-schema driver model tags'
179 pool:
180 vmImage: $(ubuntu_vm)
181 container:
182 image: $(ci_runner_image)
183 options: $(container_option)
184 steps:
185 # If grep succeeds and finds a match the test fails as we should
186 # have no matches.
187 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
188
Simon Glass5dd13b92023-02-23 18:18:24 -0700189 - job: check_packing_of_python_tools
190 displayName: 'Check we can package the Python tools'
191 pool:
192 vmImage: $(ubuntu_vm)
193 container:
194 image: $(ci_runner_image)
195 options: $(container_option)
196 steps:
197 - script: make pip
198
Tom Rini8c741cf2024-06-18 08:18:51 -0600199 - job: count_built_machines
200 displayName: 'Ensure we build all possible machines'
201 pool:
202 vmImage: $(ubuntu_vm)
203 container:
204 image: $(ci_runner_image)
205 options: $(container_option)
206 steps:
207 - script: |
208 BMANARGS="-o /tmp --dry-run -v"
209 # First get the total number of boards
210 total=$(tools/buildman/buildman ${BMANARGS} | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
211 # Now build up the list of what each job built.
212 built="$(tools/buildman/buildman ${BMANARGS} $(am33xx_kirkwood_ls1_mvebu_omap) | grep '^ ')"
213 built="$built $(tools/buildman/buildman ${BMANARGS} $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) | grep '^ ')"
214 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_nxp_minus_imx_and_at91) | grep '^ ')"
215 built="$built $(tools/buildman/buildman ${BMANARGS} $(imx) | grep '^ ')"
216 built="$built $(tools/buildman/buildman ${BMANARGS} $(rk) | grep '^ ')"
217 built="$built $(tools/buildman/buildman ${BMANARGS} $(sunxi) | grep '^ ')"
218 built="$built $(tools/buildman/buildman ${BMANARGS} $(powerpc) | grep '^ ')"
219 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_catch_all) | grep '^ ')"
220 built="$built $(tools/buildman/buildman ${BMANARGS} $(aarch64_catch_all) | grep '^ ')"
221 built="$built $(tools/buildman/buildman ${BMANARGS} $(everything_but_arm_and_powerpc) | grep '^ ')"
222 # Finally see how many machines that is.
223 actual=$(tools/buildman/buildman ${BMANARGS} $built | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
224 echo We would build a total of $actual out of $total platforms this CI run
225 [ $actual -eq $total ] && exit 0 || exit 1
226
Tom Rini63c0ce82023-09-01 16:41:41 -0400227 - job: create_test_py_wrapper_script
228 displayName: 'Create and stage a wrapper for test.py runs'
229 pool:
230 vmImage: $(ubuntu_vm)
231 steps:
232 - checkout: none
233 - script: |
234 cat << EOF > test.sh
235 #!/bin/bash
236 set -ex
237 # the below corresponds to .gitlab-ci.yml "before_script"
238 cd \${WORK_DIR}
239 git config --global --add safe.directory \${WORK_DIR}
Tom Rinie9f91222024-07-05 08:07:00 -0600240 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Tom Rini63c0ce82023-09-01 16:41:41 -0400241 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
242 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
243 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
244 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
245 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200246 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;
247 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400248 fi
249 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200250 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;
251 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400252 fi
Patrick Rudolphd67a7422024-10-23 15:20:20 +0200253 if [[ "\${TEST_PY_BD}" == "qemu-arm-sbsa" ]]; then
254 wget -O /tmp/bl1.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/bl1.bin;
255 wget -O /tmp/fip.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/fip.bin;
256 export BINMAN_INDIRS=/tmp
257 fi
Tom Rini63c0ce82023-09-01 16:41:41 -0400258 # 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 Rinid0296f62024-02-13 09:39:27 -0500284 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 Rini63c0ce82023-09-01 16:41:41 -0400287 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 Rini792dbc32024-06-27 07:43:20 -0600295 ./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 Rini63c0ce82023-09-01 16:41:41 -0400296 # 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 Rinic28b7152023-09-01 16:41:42 -0400308- stage: test_py_sandbox
Tom Rini4c268a62022-01-11 19:14:28 -0500309 jobs:
Tom Rinic28b7152023-09-01 16:41:42 -0400310 - job: test_py_sandbox
311 displayName: 'test.py for sandbox'
Bin Mengddaa6b12019-10-28 07:25:03 -0700312 pool:
313 vmImage: $(ubuntu_vm)
314 strategy:
315 matrix:
316 sandbox:
317 TEST_PY_BD: "sandbox"
Tom Rini8b3107a2023-08-20 13:31:27 -0400318 sandbox_asan:
319 TEST_PY_BD: "sandbox"
320 OVERRIDE: "-a ASAN"
321 TEST_PY_TEST_SPEC: "version"
Tom Rini99a1bb32019-11-06 19:30:47 -0500322 sandbox_clang:
323 TEST_PY_BD: "sandbox"
Tom Rinie752a3a2024-03-10 15:59:28 -0400324 OVERRIDE: "-O clang-17"
Tom Rini8b3107a2023-08-20 13:31:27 -0400325 sandbox_clang_asan:
326 TEST_PY_BD: "sandbox"
Tom Rinie752a3a2024-03-10 15:59:28 -0400327 OVERRIDE: "-O clang-17 -a ASAN"
Tom Rini8b3107a2023-08-20 13:31:27 -0400328 TEST_PY_TEST_SPEC: "version"
Tom Rini8d088b62023-09-01 16:41:43 -0400329 sandbox64:
330 TEST_PY_BD: "sandbox64"
331 sandbox64_clang:
332 TEST_PY_BD: "sandbox64"
Tom Rinie752a3a2024-03-10 15:59:28 -0400333 OVERRIDE: "-O clang-17"
Bin Mengddaa6b12019-10-28 07:25:03 -0700334 sandbox_spl:
335 TEST_PY_BD: "sandbox_spl"
Simon Glass36a69e12020-10-25 20:38:36 -0600336 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa2a4eea2022-04-30 00:56:57 -0600337 sandbox_vpl:
338 TEST_PY_BD: "sandbox_vpl"
Simon Glass4e5e7f42023-04-02 14:01:26 +1200339 TEST_PY_TEST_SPEC: "vpl or test_spl"
Simon Glass492f0b02021-03-15 17:25:34 +1300340 sandbox_noinst:
341 TEST_PY_BD: "sandbox_noinst"
342 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Sean Andersonf65dcc02023-10-14 16:47:59 -0400343 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 Mengddaa6b12019-10-28 07:25:03 -0700347 sandbox_flattree:
348 TEST_PY_BD: "sandbox_flattree"
Simon Glassc2f01902023-01-15 14:16:00 -0700349 sandbox_trace:
350 TEST_PY_BD: "sandbox"
351 BUILD_ENV: "FTRACE=1 NO_LTO=1"
352 TEST_PY_TEST_SPEC: "trace"
Sughosh Ganu0c3783e2023-08-22 23:10:02 +0530353 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
Tom Rinic28b7152023-09-01 16:41:42 -0400354 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 Rini792dbc32024-06-27 07:43:20 -0600379 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
Tom Rinic28b7152023-09-01 16:41:42 -0400380 -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 Rini792dbc32024-06-27 07:43:20 -0600387 - task: PublishTestResults@2
388 inputs:
389 testResultsFormat: 'JUnit'
390 testResultsFiles: 'results.xml'
Tom Rinic28b7152023-09-01 16:41:42 -0400391
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 Glass13e1fa02022-01-21 10:23:01 -0700400 coreboot:
401 TEST_PY_BD: "coreboot"
402 TEST_PY_ID: "--id qemu"
403 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700404 evb_ast2500:
405 TEST_PY_BD: "evb-ast2500"
406 TEST_PY_ID: "--id qemu"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930407 evb_ast2600:
408 TEST_PY_BD: "evb-ast2600"
409 TEST_PY_ID: "--id qemu"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200410 vexpress_ca9x4:
411 TEST_PY_BD: "vexpress_ca9x4"
412 TEST_PY_ID: "--id qemu"
Bin Mengddaa6b12019-10-28 07:25:03 -0700413 integratorcp_cm926ejs:
414 TEST_PY_BD: "integratorcp_cm926ejs"
415 TEST_PY_ID: "--id qemu"
416 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700417 qemu_arm:
418 TEST_PY_BD: "qemu_arm"
419 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700420 qemu_arm64:
421 TEST_PY_BD: "qemu_arm64"
422 TEST_PY_TEST_SPEC: "not sleep"
Patrick Rudolphd67a7422024-10-23 15:20:20 +0200423 qemu_arm_sbsa_ref:
424 TEST_PY_BD: "qemu-arm-sbsa"
425 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut07240eb2023-03-23 01:22:41 +0100426 qemu_m68k:
427 TEST_PY_BD: "M5208EVBE"
428 TEST_PY_ID: "--id qemu"
429 TEST_PY_TEST_SPEC: "not sleep and not efi"
430 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
Daniel Schwierzeck879bc742020-06-06 22:21:47 +0200431 qemu_malta:
432 TEST_PY_BD: "malta"
433 TEST_PY_ID: "--id qemu"
434 TEST_PY_TEST_SPEC: "not sleep and not efi"
435 qemu_maltael:
436 TEST_PY_BD: "maltael"
437 TEST_PY_ID: "--id qemu"
438 TEST_PY_TEST_SPEC: "not sleep and not efi"
439 qemu_malta64:
440 TEST_PY_BD: "malta64"
441 TEST_PY_ID: "--id qemu"
442 TEST_PY_TEST_SPEC: "not sleep and not efi"
443 qemu_malta64el:
444 TEST_PY_BD: "malta64el"
445 TEST_PY_ID: "--id qemu"
446 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengddaa6b12019-10-28 07:25:03 -0700447 qemu_ppce500:
448 TEST_PY_BD: "qemu-ppce500"
449 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700450 qemu_riscv32:
451 TEST_PY_BD: "qemu-riscv32"
452 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700453 qemu_riscv64:
454 TEST_PY_BD: "qemu-riscv64"
455 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700456 qemu_riscv32_spl:
457 TEST_PY_BD: "qemu-riscv32_spl"
458 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700459 qemu_riscv64_spl:
460 TEST_PY_BD: "qemu-riscv64_spl"
461 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700462 qemu_x86:
463 TEST_PY_BD: "qemu-x86"
464 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700465 qemu_x86_64:
466 TEST_PY_BD: "qemu-x86_64"
467 TEST_PY_TEST_SPEC: "not sleep"
Jiaxun Yangacc795b2024-06-18 14:56:11 +0100468 qemu_xtensa_dc233c:
469 TEST_PY_BD: "qemu-xtensa-dc233c"
470 TEST_PY_TEST_SPEC: "not sleep and not efi"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200471 r2dplus_i82557c:
472 TEST_PY_BD: "r2dplus"
473 TEST_PY_ID: "--id i82557c_qemu"
474 r2dplus_pcnet:
475 TEST_PY_BD: "r2dplus"
476 TEST_PY_ID: "--id pcnet_qemu"
477 r2dplus_rtl8139:
478 TEST_PY_BD: "r2dplus"
479 TEST_PY_ID: "--id rtl8139_qemu"
480 r2dplus_tulip:
481 TEST_PY_BD: "r2dplus"
482 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0ae41062021-08-26 23:33:35 +0800483 sifive_unleashed_sdcard:
484 TEST_PY_BD: "sifive_unleashed"
485 TEST_PY_ID: "--id sdcard_qemu"
486 sifive_unleashed_spi-nor:
487 TEST_PY_BD: "sifive_unleashed"
488 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf8834fd2020-02-13 15:03:29 +0100489 xilinx_zynq_virt:
490 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700491 TEST_PY_ID: "--id qemu"
492 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700493 xilinx_versal_virt:
494 TEST_PY_BD: "xilinx_versal_virt"
495 TEST_PY_ID: "--id qemu"
496 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700497 xtfpga:
498 TEST_PY_BD: "xtfpga"
499 TEST_PY_ID: "--id qemu"
500 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700501 steps:
Tom Rini63c0ce82023-09-01 16:41:41 -0400502 - download: current
503 artifact: testsh
Bin Mengddaa6b12019-10-28 07:25:03 -0700504 - script: |
Bin Mengddaa6b12019-10-28 07:25:03 -0700505 # make current directory writeable to uboot user inside the container
506 # as sandbox testing need create files like spi flash images, etc.
507 # (TODO: clean up this in the future)
508 chmod 777 .
Tom Rini63c0ce82023-09-01 16:41:41 -0400509 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300510 # Some tests using libguestfs-tools need the fuse device to run
Tom Rini63c0ce82023-09-01 16:41:41 -0400511 docker run "$@" --device /dev/fuse:/dev/fuse \
512 -v $PWD:$(work_dir) \
513 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
Tom Rini792dbc32024-06-27 07:43:20 -0600514 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
Tom Rini63c0ce82023-09-01 16:41:41 -0400515 -e WORK_DIR="${WORK_DIR}" \
516 -e TEST_PY_BD="${TEST_PY_BD}" \
517 -e TEST_PY_ID="${TEST_PY_ID}" \
518 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
519 -e OVERRIDE="${OVERRIDE}" \
520 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
521 $(Pipeline.Workspace)/testsh/test.sh
Tom Rini6acc0192023-07-11 22:33:03 -0400522 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
Tom Rini792dbc32024-06-27 07:43:20 -0600523 - task: PublishTestResults@2
524 inputs:
525 testResultsFormat: 'JUnit'
526 testResultsFiles: 'results.xml'
Bin Mengddaa6b12019-10-28 07:25:03 -0700527
Tom Rini4c268a62022-01-11 19:14:28 -0500528- stage: world_build
529 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700530 - job: build_the_world
Tom Rini88a33972023-08-20 13:31:26 -0400531 timeoutInMinutes: 0 # Use the maximum allowed
Bin Mengddaa6b12019-10-28 07:25:03 -0700532 displayName: 'Build the World'
533 pool:
534 vmImage: $(ubuntu_vm)
535 strategy:
Tom Rini1e844e62024-06-18 08:18:47 -0600536 # We split the world up in to 10 jobs as we can have at most 10
537 # parallel jobs going on the free tier of Azure.
Bin Mengddaa6b12019-10-28 07:25:03 -0700538 matrix:
Tom Rinied968dc2024-06-18 08:18:50 -0600539 am33xx_kirkwood_ls1_mvebu_omap:
540 BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap)
Tom Rini8b3107a2023-08-20 13:31:27 -0400541 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
Tom Rini3c2b2352024-06-18 08:18:48 -0600542 BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex)
Tom Rinied968dc2024-06-18 08:18:50 -0600543 arm_nxp_minus_imx_and_at91:
544 BUILDMAN: $(arm_nxp_minus_imx_and_at91)
Bin Mengddaa6b12019-10-28 07:25:03 -0700545 imx:
Tom Rini3c2b2352024-06-18 08:18:48 -0600546 BUILDMAN: $(imx)
Tom Rini8b3107a2023-08-20 13:31:27 -0400547 rk:
Tom Rini3c2b2352024-06-18 08:18:48 -0600548 BUILDMAN: $(rk)
Tom Rini8b3107a2023-08-20 13:31:27 -0400549 sunxi:
Tom Rini3c2b2352024-06-18 08:18:48 -0600550 BUILDMAN: $(sunxi)
Tom Rinifdb677d2022-08-09 21:08:52 -0400551 powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600552 BUILDMAN: $(powerpc)
Tom Rini8b3107a2023-08-20 13:31:27 -0400553 arm_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600554 BUILDMAN: $(arm_catch_all)
Bin Mengddaa6b12019-10-28 07:25:03 -0700555 aarch64_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600556 BUILDMAN: $(aarch64_catch_all)
Tom Rini8b3107a2023-08-20 13:31:27 -0400557 everything_but_arm_and_powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600558 BUILDMAN: $(everything_but_arm_and_powerpc)
Bin Mengddaa6b12019-10-28 07:25:03 -0700559 steps:
560 - script: |
561 cat << EOF > build.sh
562 set -ex
563 cd ${WORK_DIR}
564 # make environment variables available as tests are running inside a container
565 export BUILDMAN="${BUILDMAN}"
Tom Rinie0f979b2022-11-21 12:52:40 -0500566 git config --global --add safe.directory ${WORK_DIR}
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530567 pip install -r tools/buildman/requirements.txt
Bin Mengddaa6b12019-10-28 07:25:03 -0700568 EOF
569 cat << "EOF" >> build.sh
570 if [[ "${BUILDMAN}" != "" ]]; then
571 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700572 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600573 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600574 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700575 exit $ret;
576 fi;
577 fi
578 EOF
579 cat build.sh
580 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh