blob: 3ff1b44a6bcb98daa417b51acd7da6c50efffec1 [file] [log] [blame]
Bin Mengc7072d12019-10-27 05:19:48 -07001variables:
Tom Rinica34b5c2024-10-14 19:33:10 -06002 windows_vm: windows-2022
3 ubuntu_vm: ubuntu-24.04
4 macos_vm: macOS-14
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
Raymond Maodc520542024-10-03 14:50:14 -070079 :^include/linux/kconfig.h :^tools/ :^dts/upstream/
80 :^lib/mbedtls/external :^lib/mbedtls/mbedtls_def_config.h &&
Sumit Garg8d814682024-02-22 15:05:57 +053081 exit 1 || exit 0
Tom Rinibdfa3762021-12-14 13:36:41 -050082
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010083 - job: docs
84 displayName: 'Build documentation'
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010085 pool:
86 vmImage: $(ubuntu_vm)
87 container:
88 image: $(ci_runner_image)
89 options: $(container_option)
90 steps:
Heinrich Schuchardt846abe42021-01-25 22:06:25 +010091 - script: |
92 virtualenv -p /usr/bin/python3 /tmp/venvhtml
93 . /tmp/venvhtml/bin/activate
94 pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt2e0c8e62023-05-02 05:04:11 +020095 make htmldocs KDOC_WERROR=1
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010096 make infodocs
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010097
Bin Mengddaa6b12019-10-28 07:25:03 -070098 - 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 Rinica00ac62023-10-23 11:37:47 -0400107 ./tools/buildman/buildman --maintainer-check
Bin Mengddaa6b12019-10-28 07:25:03 -0700108
109 - job: tools_only
Tom Rini8244f002023-08-20 13:31:28 -0400110 displayName: 'Ensure host tools and env tools build'
Bin Mengddaa6b12019-10-28 07:25:03 -0700111 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 Rini8244f002023-08-20 13:31:28 -0400119 make mrproper
Bin Mengddaa6b12019-10-28 07:25:03 -0700120 make tools-only_config envtools -j$(nproc)
121
122 - job: utils
Tom Rini0b3e0c42020-03-11 18:11:15 -0400123 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengddaa6b12019-10-28 07:25:03 -0700124 pool:
125 vmImage: $(ubuntu_vm)
126 steps:
127 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400128 cat << "EOF" > build.sh
129 cd $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700130 git config --global user.name "Azure Pipelines"
131 git config --global user.email bmeng.cn@gmail.com
Tom Rinid1ed4462022-08-09 21:08:54 -0400132 git config --global --add safe.directory $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700133 export USER=azure
Tom Rini6c883102020-02-11 12:41:14 -0500134 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700135 . /tmp/venv/bin/activate
Tom Rini70c66dd2021-02-26 07:52:29 -0500136 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530137 pip install -r tools/buildman/requirements.txt
Tom Rini08086922023-08-10 12:52:24 -0400138 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
Bin Mengddaa6b12019-10-28 07:25:03 -0700139 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
140 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Tom Rini08086922023-08-10 12:52:24 -0400141 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400142 set -ex
Bin Mengddaa6b12019-10-28 07:25:03 -0700143 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
144 ./tools/buildman/buildman -t
145 ./tools/dtoc/dtoc -t
Simon Glass109e84e2020-07-05 21:41:55 -0600146 ./tools/patman/patman test
Tom Rini0b3e0c42020-03-11 18:11:15 -0400147 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengddaa6b12019-10-28 07:25:03 -0700148 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 Glassf6903262022-02-11 13:23:26 -0700154 - 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 Rinid1ed4462022-08-09 21:08:54 -0400163 git config --global --add safe.directory $(work_dir)
Simon Glassf6903262022-02-11 13:23:26 -0700164 export USER=azure
165 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530166 pip install -r tools/buildman/requirements.txt
Tom Rini090ff812022-03-25 08:19:09 -0400167 pip install asteval pylint==2.12.2 pyopenssl
Simon Glassf6903262022-02-11 13:23:26 -0700168 export PATH=${PATH}:~/.local/bin
169 echo "[MASTER]" >> .pylintrc
170 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
Tom Rini08086922023-08-10 12:52:24 -0400171 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
172 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400173 set -ex
Simon Glassf6903262022-02-11 13:23:26 -0700174 pylint --version
175 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
176 make pylint_err
177
Simon Glassf96763a2023-02-13 08:56:39 -0700178 - 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 Glass5dd13b92023-02-23 18:18:24 -0700190 - 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 Rini8c741cf2024-06-18 08:18:51 -0600200 - 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 Rini63c0ce82023-09-01 16:41:41 -0400228 - 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 Rinie9f91222024-07-05 08:07:00 -0600241 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Jerome Forissierde134d92024-10-16 12:04:14 +0200242 # 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 Rini63c0ce82023-09-01 16:41:41 -0400246 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 Schuchardt29999e42023-10-25 00:15:43 +0200251 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 Rini63c0ce82023-09-01 16:41:41 -0400253 fi
254 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200255 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 Rini63c0ce82023-09-01 16:41:41 -0400257 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 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"
Tom Rini5692b9c2024-10-15 12:28:26 -0600407 TEST_PY_TEST_SPEC: "not sleep"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930408 evb_ast2600:
409 TEST_PY_BD: "evb-ast2600"
410 TEST_PY_ID: "--id qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600411 TEST_PY_TEST_SPEC: "not sleep"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200412 vexpress_ca9x4:
413 TEST_PY_BD: "vexpress_ca9x4"
414 TEST_PY_ID: "--id qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600415 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700416 integratorcp_cm926ejs:
417 TEST_PY_BD: "integratorcp_cm926ejs"
418 TEST_PY_ID: "--id qemu"
419 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700420 qemu_arm:
421 TEST_PY_BD: "qemu_arm"
422 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700423 qemu_arm64:
424 TEST_PY_BD: "qemu_arm64"
425 TEST_PY_TEST_SPEC: "not sleep"
Jerome Forissierde134d92024-10-16 12:04:14 +0200426 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 Vasut07240eb2023-03-23 01:22:41 +0100429 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 Schwierzeck879bc742020-06-06 22:21:47 +0200434 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 Mengddaa6b12019-10-28 07:25:03 -0700450 qemu_ppce500:
451 TEST_PY_BD: "qemu-ppce500"
452 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700453 qemu_riscv32:
454 TEST_PY_BD: "qemu-riscv32"
455 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700456 qemu_riscv64:
457 TEST_PY_BD: "qemu-riscv64"
458 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700459 qemu_riscv32_spl:
460 TEST_PY_BD: "qemu-riscv32_spl"
461 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700462 qemu_riscv64_spl:
463 TEST_PY_BD: "qemu-riscv64_spl"
464 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700465 qemu_x86:
466 TEST_PY_BD: "qemu-x86"
467 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700468 qemu_x86_64:
469 TEST_PY_BD: "qemu-x86_64"
470 TEST_PY_TEST_SPEC: "not sleep"
Jiaxun Yangacc795b2024-06-18 14:56:11 +0100471 qemu_xtensa_dc233c:
472 TEST_PY_BD: "qemu-xtensa-dc233c"
473 TEST_PY_TEST_SPEC: "not sleep and not efi"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200474 r2dplus_i82557c:
475 TEST_PY_BD: "r2dplus"
476 TEST_PY_ID: "--id i82557c_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600477 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200478 r2dplus_pcnet:
479 TEST_PY_BD: "r2dplus"
480 TEST_PY_ID: "--id pcnet_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600481 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200482 r2dplus_rtl8139:
483 TEST_PY_BD: "r2dplus"
484 TEST_PY_ID: "--id rtl8139_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600485 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200486 r2dplus_tulip:
487 TEST_PY_BD: "r2dplus"
488 TEST_PY_ID: "--id tulip_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600489 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng0ae41062021-08-26 23:33:35 +0800490 sifive_unleashed_sdcard:
491 TEST_PY_BD: "sifive_unleashed"
492 TEST_PY_ID: "--id sdcard_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600493 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng0ae41062021-08-26 23:33:35 +0800494 sifive_unleashed_spi-nor:
495 TEST_PY_BD: "sifive_unleashed"
496 TEST_PY_ID: "--id spi-nor_qemu"
Tom Rini5692b9c2024-10-15 12:28:26 -0600497 TEST_PY_TEST_SPEC: "not sleep"
Michal Simekf8834fd2020-02-13 15:03:29 +0100498 xilinx_zynq_virt:
499 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700500 TEST_PY_ID: "--id qemu"
501 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700502 xilinx_versal_virt:
503 TEST_PY_BD: "xilinx_versal_virt"
504 TEST_PY_ID: "--id qemu"
505 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700506 xtfpga:
507 TEST_PY_BD: "xtfpga"
508 TEST_PY_ID: "--id qemu"
509 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700510 steps:
Tom Rini63c0ce82023-09-01 16:41:41 -0400511 - download: current
512 artifact: testsh
Bin Mengddaa6b12019-10-28 07:25:03 -0700513 - script: |
Bin Mengddaa6b12019-10-28 07:25:03 -0700514 # 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 Rini63c0ce82023-09-01 16:41:41 -0400518 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300519 # Some tests using libguestfs-tools need the fuse device to run
Tom Rini63c0ce82023-09-01 16:41:41 -0400520 docker run "$@" --device /dev/fuse:/dev/fuse \
521 -v $PWD:$(work_dir) \
522 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
Tom Rini792dbc32024-06-27 07:43:20 -0600523 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
Tom Rini63c0ce82023-09-01 16:41:41 -0400524 -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 Rini6acc0192023-07-11 22:33:03 -0400531 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
Tom Rini792dbc32024-06-27 07:43:20 -0600532 - task: PublishTestResults@2
533 inputs:
534 testResultsFormat: 'JUnit'
535 testResultsFiles: 'results.xml'
Bin Mengddaa6b12019-10-28 07:25:03 -0700536
Tom Rini4c268a62022-01-11 19:14:28 -0500537- stage: world_build
538 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700539 - job: build_the_world
Tom Rini88a33972023-08-20 13:31:26 -0400540 timeoutInMinutes: 0 # Use the maximum allowed
Bin Mengddaa6b12019-10-28 07:25:03 -0700541 displayName: 'Build the World'
542 pool:
543 vmImage: $(ubuntu_vm)
544 strategy:
Tom Rini1e844e62024-06-18 08:18:47 -0600545 # 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 Mengddaa6b12019-10-28 07:25:03 -0700547 matrix:
Tom Rinied968dc2024-06-18 08:18:50 -0600548 am33xx_kirkwood_ls1_mvebu_omap:
549 BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap)
Tom Rini8b3107a2023-08-20 13:31:27 -0400550 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
Tom Rini3c2b2352024-06-18 08:18:48 -0600551 BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex)
Tom Rinied968dc2024-06-18 08:18:50 -0600552 arm_nxp_minus_imx_and_at91:
553 BUILDMAN: $(arm_nxp_minus_imx_and_at91)
Bin Mengddaa6b12019-10-28 07:25:03 -0700554 imx:
Tom Rini3c2b2352024-06-18 08:18:48 -0600555 BUILDMAN: $(imx)
Tom Rini8b3107a2023-08-20 13:31:27 -0400556 rk:
Tom Rini3c2b2352024-06-18 08:18:48 -0600557 BUILDMAN: $(rk)
Tom Rini8b3107a2023-08-20 13:31:27 -0400558 sunxi:
Tom Rini3c2b2352024-06-18 08:18:48 -0600559 BUILDMAN: $(sunxi)
Tom Rinifdb677d2022-08-09 21:08:52 -0400560 powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600561 BUILDMAN: $(powerpc)
Tom Rini8b3107a2023-08-20 13:31:27 -0400562 arm_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600563 BUILDMAN: $(arm_catch_all)
Bin Mengddaa6b12019-10-28 07:25:03 -0700564 aarch64_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600565 BUILDMAN: $(aarch64_catch_all)
Tom Rini8b3107a2023-08-20 13:31:27 -0400566 everything_but_arm_and_powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600567 BUILDMAN: $(everything_but_arm_and_powerpc)
Bin Mengddaa6b12019-10-28 07:25:03 -0700568 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 Rinie0f979b2022-11-21 12:52:40 -0500575 git config --global --add safe.directory ${WORK_DIR}
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530576 pip install -r tools/buildman/requirements.txt
Bin Mengddaa6b12019-10-28 07:25:03 -0700577 EOF
578 cat << "EOF" >> build.sh
579 if [[ "${BUILDMAN}" != "" ]]; then
580 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700581 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600582 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600583 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700584 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