blob: 1d73215afbae29a1f405b2268880496a82453d85 [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 Rini4f963dc2024-01-17 15:04:50 -05005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240111-17Jan2024
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
Sumit Garg8d814682024-02-22 15:05:57 +053068 :^include/linux/kconfig.h :^tools/ :^dts/upstream/ &&
69 exit 1 || exit 0
Tom Rinibdfa3762021-12-14 13:36:41 -050070
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010071 - job: docs
72 displayName: 'Build documentation'
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010073 pool:
74 vmImage: $(ubuntu_vm)
75 container:
76 image: $(ci_runner_image)
77 options: $(container_option)
78 steps:
Heinrich Schuchardt846abe42021-01-25 22:06:25 +010079 - script: |
80 virtualenv -p /usr/bin/python3 /tmp/venvhtml
81 . /tmp/venvhtml/bin/activate
82 pip install -r doc/sphinx/requirements.txt
Heinrich Schuchardt2e0c8e62023-05-02 05:04:11 +020083 make htmldocs KDOC_WERROR=1
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010084 make infodocs
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010085
Bin Mengddaa6b12019-10-28 07:25:03 -070086 - job: maintainers
87 displayName: 'Ensure all configs have MAINTAINERS entries'
88 pool:
89 vmImage: $(ubuntu_vm)
90 container:
91 image: $(ci_runner_image)
92 options: $(container_option)
93 steps:
94 - script: |
Tom Rinica00ac62023-10-23 11:37:47 -040095 ./tools/buildman/buildman --maintainer-check
Bin Mengddaa6b12019-10-28 07:25:03 -070096
97 - job: tools_only
Tom Rini8244f002023-08-20 13:31:28 -040098 displayName: 'Ensure host tools and env tools build'
Bin Mengddaa6b12019-10-28 07:25:03 -070099 pool:
100 vmImage: $(ubuntu_vm)
101 container:
102 image: $(ci_runner_image)
103 options: $(container_option)
104 steps:
105 - script: |
106 make tools-only_config tools-only -j$(nproc)
Tom Rini8244f002023-08-20 13:31:28 -0400107 make mrproper
Bin Mengddaa6b12019-10-28 07:25:03 -0700108 make tools-only_config envtools -j$(nproc)
109
110 - job: utils
Tom Rini0b3e0c42020-03-11 18:11:15 -0400111 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengddaa6b12019-10-28 07:25:03 -0700112 pool:
113 vmImage: $(ubuntu_vm)
114 steps:
115 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400116 cat << "EOF" > build.sh
117 cd $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700118 git config --global user.name "Azure Pipelines"
119 git config --global user.email bmeng.cn@gmail.com
Tom Rinid1ed4462022-08-09 21:08:54 -0400120 git config --global --add safe.directory $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700121 export USER=azure
Tom Rini6c883102020-02-11 12:41:14 -0500122 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700123 . /tmp/venv/bin/activate
Tom Rini70c66dd2021-02-26 07:52:29 -0500124 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530125 pip install -r tools/buildman/requirements.txt
Tom Rini08086922023-08-10 12:52:24 -0400126 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
Bin Mengddaa6b12019-10-28 07:25:03 -0700127 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
128 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Tom Rini08086922023-08-10 12:52:24 -0400129 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400130 set -ex
Bin Mengddaa6b12019-10-28 07:25:03 -0700131 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
132 ./tools/buildman/buildman -t
133 ./tools/dtoc/dtoc -t
Simon Glass109e84e2020-07-05 21:41:55 -0600134 ./tools/patman/patman test
Tom Rini0b3e0c42020-03-11 18:11:15 -0400135 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengddaa6b12019-10-28 07:25:03 -0700136 EOF
137 cat build.sh
138 # We cannot use "container" like other jobs above, as buildman
139 # seems to hang forever with pre-configured "container" environment
140 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
141
Simon Glassf6903262022-02-11 13:23:26 -0700142 - job: pylint
143 displayName: Check for any pylint regressions
144 pool:
145 vmImage: $(ubuntu_vm)
146 container:
147 image: $(ci_runner_image)
148 options: $(container_option)
149 steps:
150 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400151 git config --global --add safe.directory $(work_dir)
Simon Glassf6903262022-02-11 13:23:26 -0700152 export USER=azure
153 pip install -r test/py/requirements.txt
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530154 pip install -r tools/buildman/requirements.txt
Tom Rini090ff812022-03-25 08:19:09 -0400155 pip install asteval pylint==2.12.2 pyopenssl
Simon Glassf6903262022-02-11 13:23:26 -0700156 export PATH=${PATH}:~/.local/bin
157 echo "[MASTER]" >> .pylintrc
158 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
Tom Rini08086922023-08-10 12:52:24 -0400159 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
160 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
Tom Rinid1ed4462022-08-09 21:08:54 -0400161 set -ex
Simon Glassf6903262022-02-11 13:23:26 -0700162 pylint --version
163 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
164 make pylint_err
165
Simon Glassf96763a2023-02-13 08:56:39 -0700166 - job: check_for_pre_schema_tags
167 displayName: 'Check for pre-schema driver model tags'
168 pool:
169 vmImage: $(ubuntu_vm)
170 container:
171 image: $(ci_runner_image)
172 options: $(container_option)
173 steps:
174 # If grep succeeds and finds a match the test fails as we should
175 # have no matches.
176 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
177
Simon Glass5dd13b92023-02-23 18:18:24 -0700178 - job: check_packing_of_python_tools
179 displayName: 'Check we can package the Python tools'
180 pool:
181 vmImage: $(ubuntu_vm)
182 container:
183 image: $(ci_runner_image)
184 options: $(container_option)
185 steps:
186 - script: make pip
187
Tom Rini63c0ce82023-09-01 16:41:41 -0400188 - job: create_test_py_wrapper_script
189 displayName: 'Create and stage a wrapper for test.py runs'
190 pool:
191 vmImage: $(ubuntu_vm)
192 steps:
193 - checkout: none
194 - script: |
195 cat << EOF > test.sh
196 #!/bin/bash
197 set -ex
198 # the below corresponds to .gitlab-ci.yml "before_script"
199 cd \${WORK_DIR}
200 git config --global --add safe.directory \${WORK_DIR}
201 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
202 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
203 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
204 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
205 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
206 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200207 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;
208 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400209 fi
210 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardt29999e42023-10-25 00:15:43 +0200211 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;
212 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Tom Rini63c0ce82023-09-01 16:41:41 -0400213 fi
214 # the below corresponds to .gitlab-ci.yml "script"
215 cd \${WORK_DIR}
216 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
217 if [ -n "\${BUILD_ENV}" ]; then
218 export \${BUILD_ENV};
219 fi
220 pip install -r tools/buildman/requirements.txt
221 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
222 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
223 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
224 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
225 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
226 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
227 # create sdcard / spi-nor images for sifive unleashed using genimage
228 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
229 mkdir -p root;
230 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
231 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
232 rm -rf tmp;
233 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
234 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
235 rm -rf tmp;
236 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
237 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
238 fi
239 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
240 wget -O - "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" |xz -dc >\${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
241 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
242 chmod a+x cbfstool;
243 ./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;
244 fi
245 virtualenv -p /usr/bin/python3 /tmp/venv
246 . /tmp/venv/bin/activate
247 pip install -r test/py/requirements.txt
248 pip install pytest-azurepipelines
249 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
250 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
251 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
252 ./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"
253 # the below corresponds to .gitlab-ci.yml "after_script"
254 rm -rf /tmp/uboot-test-hooks /tmp/venv
255 EOF
256 - task: CopyFiles@2
257 displayName: 'Copy test.sh for later usage'
258 inputs:
259 contents: 'test.sh'
260 targetFolder: '$(Build.ArtifactStagingDirectory)'
261 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
262 displayName: 'Publish test.sh'
263 artifact: testsh
264
Tom Rinic28b7152023-09-01 16:41:42 -0400265- stage: test_py_sandbox
Tom Rini4c268a62022-01-11 19:14:28 -0500266 jobs:
Tom Rinic28b7152023-09-01 16:41:42 -0400267 - job: test_py_sandbox
268 displayName: 'test.py for sandbox'
Bin Mengddaa6b12019-10-28 07:25:03 -0700269 pool:
270 vmImage: $(ubuntu_vm)
271 strategy:
272 matrix:
273 sandbox:
274 TEST_PY_BD: "sandbox"
Tom Rini8b3107a2023-08-20 13:31:27 -0400275 sandbox_asan:
276 TEST_PY_BD: "sandbox"
277 OVERRIDE: "-a ASAN"
278 TEST_PY_TEST_SPEC: "version"
Tom Rini99a1bb32019-11-06 19:30:47 -0500279 sandbox_clang:
280 TEST_PY_BD: "sandbox"
Tom Riniad9b2fd2023-03-21 15:07:45 -0400281 OVERRIDE: "-O clang-16"
Tom Rini8b3107a2023-08-20 13:31:27 -0400282 sandbox_clang_asan:
283 TEST_PY_BD: "sandbox"
284 OVERRIDE: "-O clang-16 -a ASAN"
285 TEST_PY_TEST_SPEC: "version"
Tom Rini8d088b62023-09-01 16:41:43 -0400286 sandbox64:
287 TEST_PY_BD: "sandbox64"
288 sandbox64_clang:
289 TEST_PY_BD: "sandbox64"
Tom Rini77d48f12022-11-22 12:31:58 -0500290 OVERRIDE: "-O clang-16"
Bin Mengddaa6b12019-10-28 07:25:03 -0700291 sandbox_spl:
292 TEST_PY_BD: "sandbox_spl"
Simon Glass36a69e12020-10-25 20:38:36 -0600293 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa2a4eea2022-04-30 00:56:57 -0600294 sandbox_vpl:
295 TEST_PY_BD: "sandbox_vpl"
Simon Glass4e5e7f42023-04-02 14:01:26 +1200296 TEST_PY_TEST_SPEC: "vpl or test_spl"
Simon Glass492f0b02021-03-15 17:25:34 +1300297 sandbox_noinst:
298 TEST_PY_BD: "sandbox_noinst"
299 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Sean Andersonf65dcc02023-10-14 16:47:59 -0400300 sandbox_noinst_load_fit_full:
301 TEST_PY_BD: "sandbox_noinst"
302 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
303 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
Bin Mengddaa6b12019-10-28 07:25:03 -0700304 sandbox_flattree:
305 TEST_PY_BD: "sandbox_flattree"
Simon Glassc2f01902023-01-15 14:16:00 -0700306 sandbox_trace:
307 TEST_PY_BD: "sandbox"
308 BUILD_ENV: "FTRACE=1 NO_LTO=1"
309 TEST_PY_TEST_SPEC: "trace"
Sughosh Ganu0c3783e2023-08-22 23:10:02 +0530310 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 -0400311 steps:
312 - download: current
313 artifact: testsh
314 - script: |
315 # make current directory writeable to uboot user inside the container
316 # as sandbox testing need create files like spi flash images, etc.
317 # (TODO: clean up this in the future)
318 chmod 777 .
319 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
320 # Filesystem tests need extra docker args to run
321 set --
322 # mount -o loop needs the loop devices
323 if modprobe loop; then
324 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
325 set -- "$@" --device $d:$d
326 done
327 fi
328 # Needed for mount syscall (for guestmount as well)
329 set -- "$@" --cap-add SYS_ADMIN
330 # Default apparmor profile denies mounts
331 set -- "$@" --security-opt apparmor=unconfined
332 # Some tests using libguestfs-tools need the fuse device to run
333 docker run "$@" --device /dev/fuse:/dev/fuse \
334 -v $PWD:$(work_dir) \
335 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
336 -e WORK_DIR="${WORK_DIR}" \
337 -e TEST_PY_BD="${TEST_PY_BD}" \
338 -e TEST_PY_ID="${TEST_PY_ID}" \
339 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
340 -e OVERRIDE="${OVERRIDE}" \
341 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
342 $(Pipeline.Workspace)/testsh/test.sh
343
344- stage: test_py_qemu
345 jobs:
346 - job: test_py_qemu
347 displayName: 'test.py for QEMU platforms'
348 pool:
349 vmImage: $(ubuntu_vm)
350 strategy:
351 matrix:
Simon Glass13e1fa02022-01-21 10:23:01 -0700352 coreboot:
353 TEST_PY_BD: "coreboot"
354 TEST_PY_ID: "--id qemu"
355 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700356 evb_ast2500:
357 TEST_PY_BD: "evb-ast2500"
358 TEST_PY_ID: "--id qemu"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930359 evb_ast2600:
360 TEST_PY_BD: "evb-ast2600"
361 TEST_PY_ID: "--id qemu"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200362 vexpress_ca9x4:
363 TEST_PY_BD: "vexpress_ca9x4"
364 TEST_PY_ID: "--id qemu"
Bin Mengddaa6b12019-10-28 07:25:03 -0700365 integratorcp_cm926ejs:
366 TEST_PY_BD: "integratorcp_cm926ejs"
367 TEST_PY_ID: "--id qemu"
368 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700369 qemu_arm:
370 TEST_PY_BD: "qemu_arm"
371 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700372 qemu_arm64:
373 TEST_PY_BD: "qemu_arm64"
374 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut07240eb2023-03-23 01:22:41 +0100375 qemu_m68k:
376 TEST_PY_BD: "M5208EVBE"
377 TEST_PY_ID: "--id qemu"
378 TEST_PY_TEST_SPEC: "not sleep and not efi"
379 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
Daniel Schwierzeck879bc742020-06-06 22:21:47 +0200380 qemu_malta:
381 TEST_PY_BD: "malta"
382 TEST_PY_ID: "--id qemu"
383 TEST_PY_TEST_SPEC: "not sleep and not efi"
384 qemu_maltael:
385 TEST_PY_BD: "maltael"
386 TEST_PY_ID: "--id qemu"
387 TEST_PY_TEST_SPEC: "not sleep and not efi"
388 qemu_malta64:
389 TEST_PY_BD: "malta64"
390 TEST_PY_ID: "--id qemu"
391 TEST_PY_TEST_SPEC: "not sleep and not efi"
392 qemu_malta64el:
393 TEST_PY_BD: "malta64el"
394 TEST_PY_ID: "--id qemu"
395 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengddaa6b12019-10-28 07:25:03 -0700396 qemu_ppce500:
397 TEST_PY_BD: "qemu-ppce500"
398 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700399 qemu_riscv32:
400 TEST_PY_BD: "qemu-riscv32"
401 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700402 qemu_riscv64:
403 TEST_PY_BD: "qemu-riscv64"
404 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700405 qemu_riscv32_spl:
406 TEST_PY_BD: "qemu-riscv32_spl"
407 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700408 qemu_riscv64_spl:
409 TEST_PY_BD: "qemu-riscv64_spl"
410 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700411 qemu_x86:
412 TEST_PY_BD: "qemu-x86"
413 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700414 qemu_x86_64:
415 TEST_PY_BD: "qemu-x86_64"
416 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-09-14 21:55:58 +0200417 r2dplus_i82557c:
418 TEST_PY_BD: "r2dplus"
419 TEST_PY_ID: "--id i82557c_qemu"
420 r2dplus_pcnet:
421 TEST_PY_BD: "r2dplus"
422 TEST_PY_ID: "--id pcnet_qemu"
423 r2dplus_rtl8139:
424 TEST_PY_BD: "r2dplus"
425 TEST_PY_ID: "--id rtl8139_qemu"
426 r2dplus_tulip:
427 TEST_PY_BD: "r2dplus"
428 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0ae41062021-08-26 23:33:35 +0800429 sifive_unleashed_sdcard:
430 TEST_PY_BD: "sifive_unleashed"
431 TEST_PY_ID: "--id sdcard_qemu"
432 sifive_unleashed_spi-nor:
433 TEST_PY_BD: "sifive_unleashed"
434 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf8834fd2020-02-13 15:03:29 +0100435 xilinx_zynq_virt:
436 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700437 TEST_PY_ID: "--id qemu"
438 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700439 xilinx_versal_virt:
440 TEST_PY_BD: "xilinx_versal_virt"
441 TEST_PY_ID: "--id qemu"
442 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700443 xtfpga:
444 TEST_PY_BD: "xtfpga"
445 TEST_PY_ID: "--id qemu"
446 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700447 steps:
Tom Rini63c0ce82023-09-01 16:41:41 -0400448 - download: current
449 artifact: testsh
Bin Mengddaa6b12019-10-28 07:25:03 -0700450 - script: |
Bin Mengddaa6b12019-10-28 07:25:03 -0700451 # make current directory writeable to uboot user inside the container
452 # as sandbox testing need create files like spi flash images, etc.
453 # (TODO: clean up this in the future)
454 chmod 777 .
Tom Rini63c0ce82023-09-01 16:41:41 -0400455 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300456 # Some tests using libguestfs-tools need the fuse device to run
Tom Rini63c0ce82023-09-01 16:41:41 -0400457 docker run "$@" --device /dev/fuse:/dev/fuse \
458 -v $PWD:$(work_dir) \
459 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
460 -e WORK_DIR="${WORK_DIR}" \
461 -e TEST_PY_BD="${TEST_PY_BD}" \
462 -e TEST_PY_ID="${TEST_PY_ID}" \
463 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
464 -e OVERRIDE="${OVERRIDE}" \
465 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
466 $(Pipeline.Workspace)/testsh/test.sh
Tom Rini6acc0192023-07-11 22:33:03 -0400467 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
Bin Mengddaa6b12019-10-28 07:25:03 -0700468
Tom Rini4c268a62022-01-11 19:14:28 -0500469- stage: world_build
470 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700471 - job: build_the_world
Tom Rini88a33972023-08-20 13:31:26 -0400472 timeoutInMinutes: 0 # Use the maximum allowed
Bin Mengddaa6b12019-10-28 07:25:03 -0700473 displayName: 'Build the World'
474 pool:
475 vmImage: $(ubuntu_vm)
476 strategy:
477 # Use almost the same target division in .travis.yml, only merged
Tom Rini53320122022-04-06 09:21:25 -0400478 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengddaa6b12019-10-28 07:25:03 -0700479 matrix:
Tom Rini8b3107a2023-08-20 13:31:27 -0400480 am33xx_at91_kirkwood_mvebu_omap:
481 BUILDMAN: "am33xx at91_kirkwood mvebu omap -x siemens"
482 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
483 BUILDMAN: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
484 arm_nxp_minus_imx:
485 BUILDMAN: "freescale -x powerpc,m68k,imx,mx"
Bin Mengddaa6b12019-10-28 07:25:03 -0700486 imx:
Tom Rini8b3107a2023-08-20 13:31:27 -0400487 BUILDMAN: "mx imx -x boundary,engicam,technexion,toradex"
488 rk:
489 BUILDMAN: "rk"
490 sunxi:
491 BUILDMAN: "sunxi"
Tom Rinifdb677d2022-08-09 21:08:52 -0400492 powerpc:
Tom Rini8b3107a2023-08-20 13:31:27 -0400493 BUILDMAN: "powerpc"
494 arm_catch_all:
495 BUILDMAN: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
Bin Mengddaa6b12019-10-28 07:25:03 -0700496 aarch64_catch_all:
Tom Rini8b3107a2023-08-20 13:31:27 -0400497 BUILDMAN: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
498 everything_but_arm_and_powerpc:
499 BUILDMAN: "-x arm,powerpc"
Bin Mengddaa6b12019-10-28 07:25:03 -0700500 steps:
501 - script: |
502 cat << EOF > build.sh
503 set -ex
504 cd ${WORK_DIR}
505 # make environment variables available as tests are running inside a container
506 export BUILDMAN="${BUILDMAN}"
Tom Rinie0f979b2022-11-21 12:52:40 -0500507 git config --global --add safe.directory ${WORK_DIR}
Tom Rini95f1c6cb2023-07-22 00:14:46 +0530508 pip install -r tools/buildman/requirements.txt
Bin Mengddaa6b12019-10-28 07:25:03 -0700509 EOF
510 cat << "EOF" >> build.sh
511 if [[ "${BUILDMAN}" != "" ]]; then
512 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700513 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600514 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600515 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700516 exit $ret;
517 fi;
518 fi
519 EOF
520 cat build.sh
521 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh