blob: c127fd3ca2fd041dc3d87c92c23366fab7e210d3 [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 Rini9d885972023-08-25 13:21:27 -04005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230804-25Aug2023
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
Bin Mengc7072d12019-10-27 05:19:48 -070011
Tom Rini4c268a62022-01-11 19:14:28 -050012stages:
13- stage: testsuites
14 jobs:
Bin Mengc7072d12019-10-27 05:19:48 -070015 - job: tools_only_windows
16 displayName: 'Ensure host tools build for Windows'
17 pool:
18 vmImage: $(windows_vm)
Bin Mengc7072d12019-10-27 05:19:48 -070019 steps:
Bin Meng31c3bce2020-07-28 02:06:44 -070020 - powershell: |
Bin Mengbd97b0d2021-06-22 07:33:21 +080021 (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 -070022 displayName: 'Install MSYS2'
23 - script: |
Bin Meng31c3bce2020-07-28 02:06:44 -070024 sfx.exe -y -o%CD:~0,2%\
Tom Rinic7f4e6a2022-05-03 08:30:14 -040025 %CD:~0,2%\msys64\usr\bin\bash -lc " "
26 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
27 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
Bin Mengc7072d12019-10-27 05:19:48 -070028 displayName: 'Update MSYS2'
29 - script: |
AKASHI Takahiroba212432022-02-09 19:10:39 +090030 %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 -070031 displayName: 'Install Toolchain'
32 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050033 echo make tools-only_defconfig tools-only > build-tools.sh
Bin Meng8c655152020-07-28 02:06:42 -070034 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
Bin Mengc7072d12019-10-27 05:19:48 -070035 displayName: 'Build Host Tools'
36 env:
37 # Tell MSYS2 we need a POSIX emulation layer
38 MSYSTEM: MSYS
39 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
40 CHERE_INVOKING: yes
Bin Mengddaa6b12019-10-28 07:25:03 -070041
Tom Riniab1e85b2020-05-26 20:39:03 -040042 - job: tools_only_macOS
43 displayName: 'Ensure host tools build for macOS X'
44 pool:
45 vmImage: $(macos_vm)
46 steps:
AKASHI Takahiroba212432022-02-09 19:10:39 +090047 - script: brew install make ossp-uuid
Tom Riniab1e85b2020-05-26 20:39:03 -040048 displayName: Brew install dependencies
49 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050050 gmake tools-only_config tools-only \
Tom Riniab1e85b2020-05-26 20:39:03 -040051 HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \
52 HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \
53 -j$(sysctl -n hw.logicalcpu)
54 displayName: 'Perform tools-only build'
55
Tom Rini1cc7e4c2022-12-04 10:14:15 -050056 - job: check_for_new_CONFIG_symbols_outside_Kconfig
57 displayName: 'Check for new CONFIG symbols outside Kconfig'
Tom Rinibdfa3762021-12-14 13:36:41 -050058 pool:
59 vmImage: $(ubuntu_vm)
60 container:
61 image: $(ci_runner_image)
62 options: $(container_option)
63 steps:
Tom Rini1cc7e4c2022-12-04 10:14:15 -050064 # If grep succeeds and finds a match the test fails as we should
65 # have no matches.
66 - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
Tom Rini8f7345c2023-01-10 11:19:46 -050067 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
68 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
Tom Rinibdfa3762021-12-14 13:36:41 -050069
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010070 - job: docs
71 displayName: 'Build documentation'
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010072 pool:
73 vmImage: $(ubuntu_vm)
74 container:
75 image: $(ci_runner_image)
76 options: $(container_option)
77 steps:
Heinrich Schuchardt846abe42021-01-25 22:06:25 +010078 - script: |
79 virtualenv -p /usr/bin/python3 /tmp/venvhtml
80 . /tmp/venvhtml/bin/activate
81 pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt2e0c8e62023-05-02 05:04:11 +020082 make htmldocs KDOC_WERROR=1
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010083 make infodocs
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010084
Bin Mengddaa6b12019-10-28 07:25:03 -070085 - job: maintainers
86 displayName: 'Ensure all configs have MAINTAINERS entries'
87 pool:
88 vmImage: $(ubuntu_vm)
89 container:
90 image: $(ci_runner_image)
91 options: $(container_option)
92 steps:
93 - script: |
Simon Glass5e728d42023-07-19 17:48:27 -060094 ./tools/buildman/buildman --maintainer-check || exit 0
Bin Mengddaa6b12019-10-28 07:25:03 -070095
96 - job: tools_only
Tom Rini8244f002023-08-20 13:31:28 -040097 displayName: 'Ensure host tools and env tools build'
Bin Mengddaa6b12019-10-28 07:25:03 -070098 pool:
99 vmImage: $(ubuntu_vm)
100 container:
101 image: $(ci_runner_image)
102 options: $(container_option)
103 steps:
104 - script: |
105 make tools-only_config tools-only -j$(nproc)
Tom Rini8244f002023-08-20 13:31:28 -0400106 make mrproper
Bin Mengddaa6b12019-10-28 07:25:03 -0700107 make tools-only_config envtools -j$(nproc)
108
109 - job: utils
Tom Rini0b3e0c42020-03-11 18:11:15 -0400110 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengddaa6b12019-10-28 07:25:03 -0700111 pool:
112 vmImage: $(ubuntu_vm)
113 steps:
114 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400115 cat << "EOF" > build.sh
116 cd $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700117 git config --global user.name "Azure Pipelines"
118 git config --global user.email bmeng.cn@gmail.com
Tom Rinid1ed4462022-08-09 21:08:54 -0400119 git config --global --add safe.directory $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700120 export USER=azure
Tom Rini6c883102020-02-11 12:41:14 -0500121 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700122 . /tmp/venv/bin/activate
Tom Rini70c66dd2021-02-26 07:52:29 -0500123 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530124 pip install -r tools/buildman/requirements.txt
Tom Rini08086922023-08-10 12:52:24 -0400125 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
Bin Mengddaa6b12019-10-28 07:25:03 -0700126 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
127 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Tom Rini08086922023-08-10 12:52:24 -0400128 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400129 set -ex
Bin Mengddaa6b12019-10-28 07:25:03 -0700130 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
131 ./tools/buildman/buildman -t
132 ./tools/dtoc/dtoc -t
Simon Glass109e84e2020-07-05 21:41:55 -0600133 ./tools/patman/patman test
Tom Rini0b3e0c42020-03-11 18:11:15 -0400134 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengddaa6b12019-10-28 07:25:03 -0700135 EOF
136 cat build.sh
137 # We cannot use "container" like other jobs above, as buildman
138 # seems to hang forever with pre-configured "container" environment
139 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
140
Pali Rohár80ad67b2020-05-17 14:38:22 +0200141 - job: nokia_rx51_test
142 displayName: 'Run tests for Nokia RX-51 (aka N900)'
143 pool:
144 vmImage: $(ubuntu_vm)
145 container:
146 image: $(ci_runner_image)
147 options: $(container_option)
148 steps:
149 - script: |
Pali Rohárd88c1472023-02-21 11:22:29 -0500150 mkdir nokia_rx51_tmp
151 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/
152 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/
153 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/
154 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/
155 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/
156 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/
Tom Rini3bd5ed72023-08-25 13:21:26 -0400157 export PATH=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár80ad67b2020-05-17 14:38:22 +0200158 test/nokia_rx51_test.sh
159
Simon Glassf6903262022-02-11 13:23:26 -0700160 - job: pylint
161 displayName: Check for any pylint regressions
162 pool:
163 vmImage: $(ubuntu_vm)
164 container:
165 image: $(ci_runner_image)
166 options: $(container_option)
167 steps:
168 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400169 git config --global --add safe.directory $(work_dir)
Simon Glassf6903262022-02-11 13:23:26 -0700170 export USER=azure
171 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530172 pip install -r tools/buildman/requirements.txt
Tom Rini090ff812022-03-25 08:19:09 -0400173 pip install asteval pylint==2.12.2 pyopenssl
Simon Glassf6903262022-02-11 13:23:26 -0700174 export PATH=${PATH}:~/.local/bin
175 echo "[MASTER]" >> .pylintrc
176 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
Tom Rini08086922023-08-10 12:52:24 -0400177 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
178 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400179 set -ex
Simon Glassf6903262022-02-11 13:23:26 -0700180 pylint --version
181 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
182 make pylint_err
183
Simon Glassf96763a2023-02-13 08:56:39 -0700184 - job: check_for_pre_schema_tags
185 displayName: 'Check for pre-schema driver model tags'
186 pool:
187 vmImage: $(ubuntu_vm)
188 container:
189 image: $(ci_runner_image)
190 options: $(container_option)
191 steps:
192 # If grep succeeds and finds a match the test fails as we should
193 # have no matches.
194 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
195
Simon Glass5dd13b92023-02-23 18:18:24 -0700196 - job: check_packing_of_python_tools
197 displayName: 'Check we can package the Python tools'
198 pool:
199 vmImage: $(ubuntu_vm)
200 container:
201 image: $(ci_runner_image)
202 options: $(container_option)
203 steps:
204 - script: make pip
205
Tom Rini63c0ce82023-09-01 16:41:41 -0400206 - job: create_test_py_wrapper_script
207 displayName: 'Create and stage a wrapper for test.py runs'
208 pool:
209 vmImage: $(ubuntu_vm)
210 steps:
211 - checkout: none
212 - script: |
213 cat << EOF > test.sh
214 #!/bin/bash
215 set -ex
216 # the below corresponds to .gitlab-ci.yml "before_script"
217 cd \${WORK_DIR}
218 git config --global --add safe.directory \${WORK_DIR}
219 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
220 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
221 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
222 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
223 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
224 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
225 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
226 export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
227 fi
228 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
229 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
230 export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
231 fi
232 # the below corresponds to .gitlab-ci.yml "script"
233 cd \${WORK_DIR}
234 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
235 if [ -n "\${BUILD_ENV}" ]; then
236 export \${BUILD_ENV};
237 fi
238 pip install -r tools/buildman/requirements.txt
239 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
240 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
241 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
242 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
243 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
244 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
245 # create sdcard / spi-nor images for sifive unleashed using genimage
246 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
247 mkdir -p root;
248 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
249 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
250 rm -rf tmp;
251 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
252 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
253 rm -rf tmp;
254 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
255 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
256 fi
257 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
258 wget -O - "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" |xz -dc >\${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
259 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
260 chmod a+x cbfstool;
261 ./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;
262 fi
263 virtualenv -p /usr/bin/python3 /tmp/venv
264 . /tmp/venv/bin/activate
265 pip install -r test/py/requirements.txt
266 pip install pytest-azurepipelines
267 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
268 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
269 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
270 ./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"
271 # the below corresponds to .gitlab-ci.yml "after_script"
272 rm -rf /tmp/uboot-test-hooks /tmp/venv
273 EOF
274 - task: CopyFiles@2
275 displayName: 'Copy test.sh for later usage'
276 inputs:
277 contents: 'test.sh'
278 targetFolder: '$(Build.ArtifactStagingDirectory)'
279 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
280 displayName: 'Publish test.sh'
281 artifact: testsh
282
Tom Rinic28b7152023-09-01 16:41:42 -0400283- stage: test_py_sandbox
Tom Rini4c268a62022-01-11 19:14:28 -0500284 jobs:
Tom Rinic28b7152023-09-01 16:41:42 -0400285 - job: test_py_sandbox
286 displayName: 'test.py for sandbox'
Bin Mengddaa6b12019-10-28 07:25:03 -0700287 pool:
288 vmImage: $(ubuntu_vm)
289 strategy:
290 matrix:
291 sandbox:
292 TEST_PY_BD: "sandbox"
Tom Rini8b3107a2023-08-20 13:31:27 -0400293 sandbox_asan:
294 TEST_PY_BD: "sandbox"
295 OVERRIDE: "-a ASAN"
296 TEST_PY_TEST_SPEC: "version"
Tom Rini99a1bb32019-11-06 19:30:47 -0500297 sandbox_clang:
298 TEST_PY_BD: "sandbox"
Tom Riniad9b2fd2023-03-21 15:07:45 -0400299 OVERRIDE: "-O clang-16"
Tom Rini8b3107a2023-08-20 13:31:27 -0400300 sandbox_clang_asan:
301 TEST_PY_BD: "sandbox"
302 OVERRIDE: "-O clang-16 -a ASAN"
303 TEST_PY_TEST_SPEC: "version"
Simon Glass2e32f5d2022-08-03 12:13:09 -0600304 sandbox_nolto:
305 TEST_PY_BD: "sandbox"
306 BUILD_ENV: "NO_LTO=1"
Bin Mengddaa6b12019-10-28 07:25:03 -0700307 sandbox_spl:
308 TEST_PY_BD: "sandbox_spl"
Simon Glass36a69e12020-10-25 20:38:36 -0600309 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa2a4eea2022-04-30 00:56:57 -0600310 sandbox_vpl:
311 TEST_PY_BD: "sandbox_vpl"
Simon Glass4e5e7f42023-04-02 14:01:26 +1200312 TEST_PY_TEST_SPEC: "vpl or test_spl"
Simon Glass492f0b02021-03-15 17:25:34 +1300313 sandbox_noinst:
314 TEST_PY_BD: "sandbox_noinst"
315 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengddaa6b12019-10-28 07:25:03 -0700316 sandbox_flattree:
317 TEST_PY_BD: "sandbox_flattree"
Simon Glassc2f01902023-01-15 14:16:00 -0700318 sandbox_trace:
319 TEST_PY_BD: "sandbox"
320 BUILD_ENV: "FTRACE=1 NO_LTO=1"
321 TEST_PY_TEST_SPEC: "trace"
Sughosh Ganu0c3783e2023-08-22 23:10:02 +0530322 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 -0400323 steps:
324 - download: current
325 artifact: testsh
326 - script: |
327 # make current directory writeable to uboot user inside the container
328 # as sandbox testing need create files like spi flash images, etc.
329 # (TODO: clean up this in the future)
330 chmod 777 .
331 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
332 # Filesystem tests need extra docker args to run
333 set --
334 # mount -o loop needs the loop devices
335 if modprobe loop; then
336 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
337 set -- "$@" --device $d:$d
338 done
339 fi
340 # Needed for mount syscall (for guestmount as well)
341 set -- "$@" --cap-add SYS_ADMIN
342 # Default apparmor profile denies mounts
343 set -- "$@" --security-opt apparmor=unconfined
344 # Some tests using libguestfs-tools need the fuse device to run
345 docker run "$@" --device /dev/fuse:/dev/fuse \
346 -v $PWD:$(work_dir) \
347 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
348 -e WORK_DIR="${WORK_DIR}" \
349 -e TEST_PY_BD="${TEST_PY_BD}" \
350 -e TEST_PY_ID="${TEST_PY_ID}" \
351 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
352 -e OVERRIDE="${OVERRIDE}" \
353 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
354 $(Pipeline.Workspace)/testsh/test.sh
355
356- stage: test_py_qemu
357 jobs:
358 - job: test_py_qemu
359 displayName: 'test.py for QEMU platforms'
360 pool:
361 vmImage: $(ubuntu_vm)
362 strategy:
363 matrix:
Simon Glass13e1fa02022-01-21 10:23:01 -0700364 coreboot:
365 TEST_PY_BD: "coreboot"
366 TEST_PY_ID: "--id qemu"
367 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700368 evb_ast2500:
369 TEST_PY_BD: "evb-ast2500"
370 TEST_PY_ID: "--id qemu"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930371 evb_ast2600:
372 TEST_PY_BD: "evb-ast2600"
373 TEST_PY_ID: "--id qemu"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200374 vexpress_ca9x4:
375 TEST_PY_BD: "vexpress_ca9x4"
376 TEST_PY_ID: "--id qemu"
Bin Mengddaa6b12019-10-28 07:25:03 -0700377 integratorcp_cm926ejs:
378 TEST_PY_BD: "integratorcp_cm926ejs"
379 TEST_PY_ID: "--id qemu"
380 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700381 qemu_arm:
382 TEST_PY_BD: "qemu_arm"
383 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700384 qemu_arm64:
385 TEST_PY_BD: "qemu_arm64"
386 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut07240eb2023-03-23 01:22:41 +0100387 qemu_m68k:
388 TEST_PY_BD: "M5208EVBE"
389 TEST_PY_ID: "--id qemu"
390 TEST_PY_TEST_SPEC: "not sleep and not efi"
391 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
Daniel Schwierzeck879bc742020-06-06 22:21:47 +0200392 qemu_malta:
393 TEST_PY_BD: "malta"
394 TEST_PY_ID: "--id qemu"
395 TEST_PY_TEST_SPEC: "not sleep and not efi"
396 qemu_maltael:
397 TEST_PY_BD: "maltael"
398 TEST_PY_ID: "--id qemu"
399 TEST_PY_TEST_SPEC: "not sleep and not efi"
400 qemu_malta64:
401 TEST_PY_BD: "malta64"
402 TEST_PY_ID: "--id qemu"
403 TEST_PY_TEST_SPEC: "not sleep and not efi"
404 qemu_malta64el:
405 TEST_PY_BD: "malta64el"
406 TEST_PY_ID: "--id qemu"
407 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengddaa6b12019-10-28 07:25:03 -0700408 qemu_ppce500:
409 TEST_PY_BD: "qemu-ppce500"
410 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700411 qemu_riscv32:
412 TEST_PY_BD: "qemu-riscv32"
413 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700414 qemu_riscv64:
415 TEST_PY_BD: "qemu-riscv64"
416 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700417 qemu_riscv32_spl:
418 TEST_PY_BD: "qemu-riscv32_spl"
419 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700420 qemu_riscv64_spl:
421 TEST_PY_BD: "qemu-riscv64_spl"
422 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700423 qemu_x86:
424 TEST_PY_BD: "qemu-x86"
425 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700426 qemu_x86_64:
427 TEST_PY_BD: "qemu-x86_64"
428 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200429 r2dplus_i82557c:
430 TEST_PY_BD: "r2dplus"
431 TEST_PY_ID: "--id i82557c_qemu"
432 r2dplus_pcnet:
433 TEST_PY_BD: "r2dplus"
434 TEST_PY_ID: "--id pcnet_qemu"
435 r2dplus_rtl8139:
436 TEST_PY_BD: "r2dplus"
437 TEST_PY_ID: "--id rtl8139_qemu"
438 r2dplus_tulip:
439 TEST_PY_BD: "r2dplus"
440 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0ae41062021-08-26 23:33:35 +0800441 sifive_unleashed_sdcard:
442 TEST_PY_BD: "sifive_unleashed"
443 TEST_PY_ID: "--id sdcard_qemu"
444 sifive_unleashed_spi-nor:
445 TEST_PY_BD: "sifive_unleashed"
446 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf8834fd2020-02-13 15:03:29 +0100447 xilinx_zynq_virt:
448 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700449 TEST_PY_ID: "--id qemu"
450 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700451 xilinx_versal_virt:
452 TEST_PY_BD: "xilinx_versal_virt"
453 TEST_PY_ID: "--id qemu"
454 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700455 xtfpga:
456 TEST_PY_BD: "xtfpga"
457 TEST_PY_ID: "--id qemu"
458 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700459 steps:
Tom Rini63c0ce82023-09-01 16:41:41 -0400460 - download: current
461 artifact: testsh
Bin Mengddaa6b12019-10-28 07:25:03 -0700462 - script: |
Bin Mengddaa6b12019-10-28 07:25:03 -0700463 # make current directory writeable to uboot user inside the container
464 # as sandbox testing need create files like spi flash images, etc.
465 # (TODO: clean up this in the future)
466 chmod 777 .
Tom Rini63c0ce82023-09-01 16:41:41 -0400467 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300468 # Some tests using libguestfs-tools need the fuse device to run
Tom Rini63c0ce82023-09-01 16:41:41 -0400469 docker run "$@" --device /dev/fuse:/dev/fuse \
470 -v $PWD:$(work_dir) \
471 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
472 -e WORK_DIR="${WORK_DIR}" \
473 -e TEST_PY_BD="${TEST_PY_BD}" \
474 -e TEST_PY_ID="${TEST_PY_ID}" \
475 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
476 -e OVERRIDE="${OVERRIDE}" \
477 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
478 $(Pipeline.Workspace)/testsh/test.sh
Tom Rini6acc0192023-07-11 22:33:03 -0400479 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
Bin Mengddaa6b12019-10-28 07:25:03 -0700480
Tom Rini4c268a62022-01-11 19:14:28 -0500481- stage: world_build
482 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700483 - job: build_the_world
Tom Rini88a33972023-08-20 13:31:26 -0400484 timeoutInMinutes: 0 # Use the maximum allowed
Bin Mengddaa6b12019-10-28 07:25:03 -0700485 displayName: 'Build the World'
486 pool:
487 vmImage: $(ubuntu_vm)
488 strategy:
489 # Use almost the same target division in .travis.yml, only merged
Tom Rini53320122022-04-06 09:21:25 -0400490 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengddaa6b12019-10-28 07:25:03 -0700491 matrix:
Tom Rini8b3107a2023-08-20 13:31:27 -0400492 am33xx_at91_kirkwood_mvebu_omap:
493 BUILDMAN: "am33xx at91_kirkwood mvebu omap -x siemens"
494 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
495 BUILDMAN: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
496 arm_nxp_minus_imx:
497 BUILDMAN: "freescale -x powerpc,m68k,imx,mx"
Bin Mengddaa6b12019-10-28 07:25:03 -0700498 imx:
Tom Rini8b3107a2023-08-20 13:31:27 -0400499 BUILDMAN: "mx imx -x boundary,engicam,technexion,toradex"
500 rk:
501 BUILDMAN: "rk"
502 sunxi:
503 BUILDMAN: "sunxi"
Tom Rinifdb677d2022-08-09 21:08:52 -0400504 powerpc:
Tom Rini8b3107a2023-08-20 13:31:27 -0400505 BUILDMAN: "powerpc"
506 arm_catch_all:
507 BUILDMAN: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
Bin Mengddaa6b12019-10-28 07:25:03 -0700508 aarch64_catch_all:
Tom Rini8b3107a2023-08-20 13:31:27 -0400509 BUILDMAN: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
510 everything_but_arm_and_powerpc:
511 BUILDMAN: "-x arm,powerpc"
Bin Mengddaa6b12019-10-28 07:25:03 -0700512 steps:
513 - script: |
514 cat << EOF > build.sh
515 set -ex
516 cd ${WORK_DIR}
517 # make environment variables available as tests are running inside a container
518 export BUILDMAN="${BUILDMAN}"
Tom Rinie0f979b2022-11-21 12:52:40 -0500519 git config --global --add safe.directory ${WORK_DIR}
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530520 pip install -r tools/buildman/requirements.txt
Bin Mengddaa6b12019-10-28 07:25:03 -0700521 EOF
522 cat << "EOF" >> build.sh
523 if [[ "${BUILDMAN}" != "" ]]; then
524 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700525 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600526 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600527 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700528 exit $ret;
529 fi;
530 fi
531 EOF
532 cat build.sh
533 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh