blob: b66d49a62ba07d8911bce792a2a0c643dec2be06 [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
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
Tom Rini63c0ce82023-09-01 16:41:41 -0400242 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
243 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
244 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
245 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
246 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200247 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;
248 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400249 fi
250 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; 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/lp64/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400253 fi
254 # the below corresponds to .gitlab-ci.yml "script"
255 cd \${WORK_DIR}
256 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
257 if [ -n "\${BUILD_ENV}" ]; then
258 export \${BUILD_ENV};
259 fi
260 pip install -r tools/buildman/requirements.txt
261 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
262 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
263 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
264 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
265 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
266 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
267 # create sdcard / spi-nor images for sifive unleashed using genimage
268 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
269 mkdir -p root;
270 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
271 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
272 rm -rf tmp;
273 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
274 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
275 rm -rf tmp;
276 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
277 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
278 fi
279 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
Tom Rinid0296f62024-02-13 09:39:27 -0500280 cp /opt/coreboot/coreboot.rom \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
281 /opt/coreboot/cbfstool \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom remove -n fallback/payload;
282 /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 -0400283 fi
284 virtualenv -p /usr/bin/python3 /tmp/venv
285 . /tmp/venv/bin/activate
286 pip install -r test/py/requirements.txt
287 pip install pytest-azurepipelines
288 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
289 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
290 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
Tom Rini792dbc32024-06-27 07:43:20 -0600291 ./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 -0400292 # the below corresponds to .gitlab-ci.yml "after_script"
293 rm -rf /tmp/uboot-test-hooks /tmp/venv
294 EOF
295 - task: CopyFiles@2
296 displayName: 'Copy test.sh for later usage'
297 inputs:
298 contents: 'test.sh'
299 targetFolder: '$(Build.ArtifactStagingDirectory)'
300 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
301 displayName: 'Publish test.sh'
302 artifact: testsh
303
Tom Rinic28b7152023-09-01 16:41:42 -0400304- stage: test_py_sandbox
Tom Rini4c268a62022-01-11 19:14:28 -0500305 jobs:
Tom Rinic28b7152023-09-01 16:41:42 -0400306 - job: test_py_sandbox
307 displayName: 'test.py for sandbox'
Bin Mengddaa6b12019-10-28 07:25:03 -0700308 pool:
309 vmImage: $(ubuntu_vm)
310 strategy:
311 matrix:
312 sandbox:
313 TEST_PY_BD: "sandbox"
Tom Rini8b3107a2023-08-20 13:31:27 -0400314 sandbox_asan:
315 TEST_PY_BD: "sandbox"
316 OVERRIDE: "-a ASAN"
317 TEST_PY_TEST_SPEC: "version"
Tom Rini99a1bb32019-11-06 19:30:47 -0500318 sandbox_clang:
319 TEST_PY_BD: "sandbox"
Tom Rinie752a3a2024-03-10 15:59:28 -0400320 OVERRIDE: "-O clang-17"
Tom Rini8b3107a2023-08-20 13:31:27 -0400321 sandbox_clang_asan:
322 TEST_PY_BD: "sandbox"
Tom Rinie752a3a2024-03-10 15:59:28 -0400323 OVERRIDE: "-O clang-17 -a ASAN"
Tom Rini8b3107a2023-08-20 13:31:27 -0400324 TEST_PY_TEST_SPEC: "version"
Tom Rini8d088b62023-09-01 16:41:43 -0400325 sandbox64:
326 TEST_PY_BD: "sandbox64"
327 sandbox64_clang:
328 TEST_PY_BD: "sandbox64"
Tom Rinie752a3a2024-03-10 15:59:28 -0400329 OVERRIDE: "-O clang-17"
Bin Mengddaa6b12019-10-28 07:25:03 -0700330 sandbox_spl:
331 TEST_PY_BD: "sandbox_spl"
Simon Glass36a69e12020-10-25 20:38:36 -0600332 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa2a4eea2022-04-30 00:56:57 -0600333 sandbox_vpl:
334 TEST_PY_BD: "sandbox_vpl"
Simon Glass4e5e7f42023-04-02 14:01:26 +1200335 TEST_PY_TEST_SPEC: "vpl or test_spl"
Simon Glass492f0b02021-03-15 17:25:34 +1300336 sandbox_noinst:
337 TEST_PY_BD: "sandbox_noinst"
338 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Sean Andersonf65dcc02023-10-14 16:47:59 -0400339 sandbox_noinst_load_fit_full:
340 TEST_PY_BD: "sandbox_noinst"
341 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
342 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
Bin Mengddaa6b12019-10-28 07:25:03 -0700343 sandbox_flattree:
344 TEST_PY_BD: "sandbox_flattree"
Simon Glassc2f01902023-01-15 14:16:00 -0700345 sandbox_trace:
346 TEST_PY_BD: "sandbox"
347 BUILD_ENV: "FTRACE=1 NO_LTO=1"
348 TEST_PY_TEST_SPEC: "trace"
Sughosh Ganu0c3783e2023-08-22 23:10:02 +0530349 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 -0400350 steps:
351 - download: current
352 artifact: testsh
353 - script: |
354 # make current directory writeable to uboot user inside the container
355 # as sandbox testing need create files like spi flash images, etc.
356 # (TODO: clean up this in the future)
357 chmod 777 .
358 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
359 # Filesystem tests need extra docker args to run
360 set --
361 # mount -o loop needs the loop devices
362 if modprobe loop; then
363 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
364 set -- "$@" --device $d:$d
365 done
366 fi
367 # Needed for mount syscall (for guestmount as well)
368 set -- "$@" --cap-add SYS_ADMIN
369 # Default apparmor profile denies mounts
370 set -- "$@" --security-opt apparmor=unconfined
371 # Some tests using libguestfs-tools need the fuse device to run
372 docker run "$@" --device /dev/fuse:/dev/fuse \
373 -v $PWD:$(work_dir) \
374 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
Tom Rini792dbc32024-06-27 07:43:20 -0600375 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
Tom Rinic28b7152023-09-01 16:41:42 -0400376 -e WORK_DIR="${WORK_DIR}" \
377 -e TEST_PY_BD="${TEST_PY_BD}" \
378 -e TEST_PY_ID="${TEST_PY_ID}" \
379 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
380 -e OVERRIDE="${OVERRIDE}" \
381 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
382 $(Pipeline.Workspace)/testsh/test.sh
Tom Rini792dbc32024-06-27 07:43:20 -0600383 - task: PublishTestResults@2
384 inputs:
385 testResultsFormat: 'JUnit'
386 testResultsFiles: 'results.xml'
Tom Rinic28b7152023-09-01 16:41:42 -0400387
388- stage: test_py_qemu
389 jobs:
390 - job: test_py_qemu
391 displayName: 'test.py for QEMU platforms'
392 pool:
393 vmImage: $(ubuntu_vm)
394 strategy:
395 matrix:
Simon Glass13e1fa02022-01-21 10:23:01 -0700396 coreboot:
397 TEST_PY_BD: "coreboot"
398 TEST_PY_ID: "--id qemu"
399 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700400 evb_ast2500:
401 TEST_PY_BD: "evb-ast2500"
402 TEST_PY_ID: "--id qemu"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930403 evb_ast2600:
404 TEST_PY_BD: "evb-ast2600"
405 TEST_PY_ID: "--id qemu"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200406 vexpress_ca9x4:
407 TEST_PY_BD: "vexpress_ca9x4"
408 TEST_PY_ID: "--id qemu"
Bin Mengddaa6b12019-10-28 07:25:03 -0700409 integratorcp_cm926ejs:
410 TEST_PY_BD: "integratorcp_cm926ejs"
411 TEST_PY_ID: "--id qemu"
412 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700413 qemu_arm:
414 TEST_PY_BD: "qemu_arm"
415 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700416 qemu_arm64:
417 TEST_PY_BD: "qemu_arm64"
418 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut07240eb2023-03-23 01:22:41 +0100419 qemu_m68k:
420 TEST_PY_BD: "M5208EVBE"
421 TEST_PY_ID: "--id qemu"
422 TEST_PY_TEST_SPEC: "not sleep and not efi"
423 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
Daniel Schwierzeck879bc742020-06-06 22:21:47 +0200424 qemu_malta:
425 TEST_PY_BD: "malta"
426 TEST_PY_ID: "--id qemu"
427 TEST_PY_TEST_SPEC: "not sleep and not efi"
428 qemu_maltael:
429 TEST_PY_BD: "maltael"
430 TEST_PY_ID: "--id qemu"
431 TEST_PY_TEST_SPEC: "not sleep and not efi"
432 qemu_malta64:
433 TEST_PY_BD: "malta64"
434 TEST_PY_ID: "--id qemu"
435 TEST_PY_TEST_SPEC: "not sleep and not efi"
436 qemu_malta64el:
437 TEST_PY_BD: "malta64el"
438 TEST_PY_ID: "--id qemu"
439 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengddaa6b12019-10-28 07:25:03 -0700440 qemu_ppce500:
441 TEST_PY_BD: "qemu-ppce500"
442 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700443 qemu_riscv32:
444 TEST_PY_BD: "qemu-riscv32"
445 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700446 qemu_riscv64:
447 TEST_PY_BD: "qemu-riscv64"
448 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700449 qemu_riscv32_spl:
450 TEST_PY_BD: "qemu-riscv32_spl"
451 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700452 qemu_riscv64_spl:
453 TEST_PY_BD: "qemu-riscv64_spl"
454 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700455 qemu_x86:
456 TEST_PY_BD: "qemu-x86"
457 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700458 qemu_x86_64:
459 TEST_PY_BD: "qemu-x86_64"
460 TEST_PY_TEST_SPEC: "not sleep"
Jiaxun Yangacc795b2024-06-18 14:56:11 +0100461 qemu_xtensa_dc233c:
462 TEST_PY_BD: "qemu-xtensa-dc233c"
463 TEST_PY_TEST_SPEC: "not sleep and not efi"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200464 r2dplus_i82557c:
465 TEST_PY_BD: "r2dplus"
466 TEST_PY_ID: "--id i82557c_qemu"
467 r2dplus_pcnet:
468 TEST_PY_BD: "r2dplus"
469 TEST_PY_ID: "--id pcnet_qemu"
470 r2dplus_rtl8139:
471 TEST_PY_BD: "r2dplus"
472 TEST_PY_ID: "--id rtl8139_qemu"
473 r2dplus_tulip:
474 TEST_PY_BD: "r2dplus"
475 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0ae41062021-08-26 23:33:35 +0800476 sifive_unleashed_sdcard:
477 TEST_PY_BD: "sifive_unleashed"
478 TEST_PY_ID: "--id sdcard_qemu"
479 sifive_unleashed_spi-nor:
480 TEST_PY_BD: "sifive_unleashed"
481 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf8834fd2020-02-13 15:03:29 +0100482 xilinx_zynq_virt:
483 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700484 TEST_PY_ID: "--id qemu"
485 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700486 xilinx_versal_virt:
487 TEST_PY_BD: "xilinx_versal_virt"
488 TEST_PY_ID: "--id qemu"
489 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700490 xtfpga:
491 TEST_PY_BD: "xtfpga"
492 TEST_PY_ID: "--id qemu"
493 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700494 steps:
Tom Rini63c0ce82023-09-01 16:41:41 -0400495 - download: current
496 artifact: testsh
Bin Mengddaa6b12019-10-28 07:25:03 -0700497 - script: |
Bin Mengddaa6b12019-10-28 07:25:03 -0700498 # make current directory writeable to uboot user inside the container
499 # as sandbox testing need create files like spi flash images, etc.
500 # (TODO: clean up this in the future)
501 chmod 777 .
Tom Rini63c0ce82023-09-01 16:41:41 -0400502 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300503 # Some tests using libguestfs-tools need the fuse device to run
Tom Rini63c0ce82023-09-01 16:41:41 -0400504 docker run "$@" --device /dev/fuse:/dev/fuse \
505 -v $PWD:$(work_dir) \
506 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
Tom Rini792dbc32024-06-27 07:43:20 -0600507 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
Tom Rini63c0ce82023-09-01 16:41:41 -0400508 -e WORK_DIR="${WORK_DIR}" \
509 -e TEST_PY_BD="${TEST_PY_BD}" \
510 -e TEST_PY_ID="${TEST_PY_ID}" \
511 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
512 -e OVERRIDE="${OVERRIDE}" \
513 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
514 $(Pipeline.Workspace)/testsh/test.sh
Tom Rini6acc0192023-07-11 22:33:03 -0400515 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
Tom Rini792dbc32024-06-27 07:43:20 -0600516 - task: PublishTestResults@2
517 inputs:
518 testResultsFormat: 'JUnit'
519 testResultsFiles: 'results.xml'
Bin Mengddaa6b12019-10-28 07:25:03 -0700520
Tom Rini4c268a62022-01-11 19:14:28 -0500521- stage: world_build
522 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700523 - job: build_the_world
Tom Rini88a33972023-08-20 13:31:26 -0400524 timeoutInMinutes: 0 # Use the maximum allowed
Bin Mengddaa6b12019-10-28 07:25:03 -0700525 displayName: 'Build the World'
526 pool:
527 vmImage: $(ubuntu_vm)
528 strategy:
Tom Rini1e844e62024-06-18 08:18:47 -0600529 # We split the world up in to 10 jobs as we can have at most 10
530 # parallel jobs going on the free tier of Azure.
Bin Mengddaa6b12019-10-28 07:25:03 -0700531 matrix:
Tom Rinied968dc2024-06-18 08:18:50 -0600532 am33xx_kirkwood_ls1_mvebu_omap:
533 BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap)
Tom Rini8b3107a2023-08-20 13:31:27 -0400534 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
Tom Rini3c2b2352024-06-18 08:18:48 -0600535 BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex)
Tom Rinied968dc2024-06-18 08:18:50 -0600536 arm_nxp_minus_imx_and_at91:
537 BUILDMAN: $(arm_nxp_minus_imx_and_at91)
Bin Mengddaa6b12019-10-28 07:25:03 -0700538 imx:
Tom Rini3c2b2352024-06-18 08:18:48 -0600539 BUILDMAN: $(imx)
Tom Rini8b3107a2023-08-20 13:31:27 -0400540 rk:
Tom Rini3c2b2352024-06-18 08:18:48 -0600541 BUILDMAN: $(rk)
Tom Rini8b3107a2023-08-20 13:31:27 -0400542 sunxi:
Tom Rini3c2b2352024-06-18 08:18:48 -0600543 BUILDMAN: $(sunxi)
Tom Rinifdb677d2022-08-09 21:08:52 -0400544 powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600545 BUILDMAN: $(powerpc)
Tom Rini8b3107a2023-08-20 13:31:27 -0400546 arm_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600547 BUILDMAN: $(arm_catch_all)
Bin Mengddaa6b12019-10-28 07:25:03 -0700548 aarch64_catch_all:
Tom Rini3c2b2352024-06-18 08:18:48 -0600549 BUILDMAN: $(aarch64_catch_all)
Tom Rini8b3107a2023-08-20 13:31:27 -0400550 everything_but_arm_and_powerpc:
Tom Rini3c2b2352024-06-18 08:18:48 -0600551 BUILDMAN: $(everything_but_arm_and_powerpc)
Bin Mengddaa6b12019-10-28 07:25:03 -0700552 steps:
553 - script: |
554 cat << EOF > build.sh
555 set -ex
556 cd ${WORK_DIR}
557 # make environment variables available as tests are running inside a container
558 export BUILDMAN="${BUILDMAN}"
Tom Rinie0f979b2022-11-21 12:52:40 -0500559 git config --global --add safe.directory ${WORK_DIR}
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530560 pip install -r tools/buildman/requirements.txt
Bin Mengddaa6b12019-10-28 07:25:03 -0700561 EOF
562 cat << "EOF" >> build.sh
563 if [[ "${BUILDMAN}" != "" ]]; then
564 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700565 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600566 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600567 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700568 exit $ret;
569 fi;
570 fi
571 EOF
572 cat build.sh
573 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh