blob: 642a16f304d021111c0b035508cb81def90892a0 [file] [log] [blame]
Bin Mengd2e680f2019-10-27 05:19:48 -07001variables:
Tom Rini38a98402021-10-31 13:24:42 -04002 windows_vm: windows-2019
Tom Rinib0a23a62022-08-08 22:44:45 -04003 ubuntu_vm: ubuntu-22.04
Tom Rini24291742022-07-27 11:10:24 -04004 macos_vm: macOS-12
Tom Rinid7e06782023-03-21 15:07:45 -04005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230308-04Apr2023
Bin Mengbf275222019-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 Mengd2e680f2019-10-27 05:19:48 -070011
Tom Rini67d3e672022-01-11 19:14:28 -050012stages:
13- stage: testsuites
14 jobs:
Bin Mengd2e680f2019-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 Mengd2e680f2019-10-27 05:19:48 -070019 steps:
Bin Meng437e70f2020-07-28 02:06:44 -070020 - powershell: |
Bin Meng1ce892c2021-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 Mengd2e680f2019-10-27 05:19:48 -070022 displayName: 'Install MSYS2'
23 - script: |
Bin Meng437e70f2020-07-28 02:06:44 -070024 sfx.exe -y -o%CD:~0,2%\
Tom Rinif8e76702022-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 Mengd2e680f2019-10-27 05:19:48 -070028 displayName: 'Update MSYS2'
29 - script: |
AKASHI Takahirod9612f42022-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 Mengd2e680f2019-10-27 05:19:48 -070031 displayName: 'Install Toolchain'
32 - script: |
Tom Rinid948c892022-11-19 18:45:43 -050033 echo make tools-only_defconfig tools-only > build-tools.sh
Bin Mengf7faddf2020-07-28 02:06:42 -070034 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
Bin Mengd2e680f2019-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 Mengbf275222019-10-28 07:25:03 -070041
Tom Rini7b4116d2020-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 Takahirod9612f42022-02-09 19:10:39 +090047 - script: brew install make ossp-uuid
Tom Rini7b4116d2020-05-26 20:39:03 -040048 displayName: Brew install dependencies
49 - script: |
Tom Rinid948c892022-11-19 18:45:43 -050050 gmake tools-only_config tools-only \
Tom Rini7b4116d2020-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 Rinibb9b9c12022-12-04 10:14:15 -050056 - job: check_for_new_CONFIG_symbols_outside_Kconfig
57 displayName: 'Check for new CONFIG symbols outside Kconfig'
Tom Rinic1a7de52021-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 Rinibb9b9c12022-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 Rinia03efb62023-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 Rinic1a7de52021-12-14 13:36:41 -050069
Bin Mengbf275222019-10-28 07:25:03 -070070 - job: cppcheck
71 displayName: 'Static code analysis with cppcheck'
72 pool:
73 vmImage: $(ubuntu_vm)
74 container:
75 image: $(ci_runner_image)
76 options: $(container_option)
77 steps:
Simon Glass4ee7f522020-04-05 14:35:43 -060078 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengbf275222019-10-28 07:25:03 -070079
Heinrich Schuchardte9cc7022023-01-12 20:30:58 +010080 - job: docs
81 displayName: 'Build documentation'
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010082 pool:
83 vmImage: $(ubuntu_vm)
84 container:
85 image: $(ci_runner_image)
86 options: $(container_option)
87 steps:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +010088 - script: |
89 virtualenv -p /usr/bin/python3 /tmp/venvhtml
90 . /tmp/venvhtml/bin/activate
91 pip install -r doc/sphinx/requirements.txt
92 make htmldocs
Heinrich Schuchardte9cc7022023-01-12 20:30:58 +010093 make infodocs
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010094
Bin Mengbf275222019-10-28 07:25:03 -070095 - job: todo
96 displayName: 'Search for TODO within source tree'
97 pool:
98 vmImage: $(ubuntu_vm)
99 container:
100 image: $(ci_runner_image)
101 options: $(container_option)
102 steps:
103 - script: grep -r TODO .
104 - script: grep -r FIXME .
105 - script: grep -r HACK . | grep -v HACKKIT
106
107 - job: sloccount
108 displayName: 'Some statistics about the code base'
109 pool:
110 vmImage: $(ubuntu_vm)
111 container:
112 image: $(ci_runner_image)
113 options: $(container_option)
114 steps:
115 - script: sloccount .
116
117 - job: maintainers
118 displayName: 'Ensure all configs have MAINTAINERS entries'
119 pool:
120 vmImage: $(ubuntu_vm)
121 container:
122 image: $(ci_runner_image)
123 options: $(container_option)
124 steps:
125 - script: |
Simon Glass7ae8a522022-07-11 19:04:09 -0600126 ./tools/buildman/buildman -R
Bin Mengbf275222019-10-28 07:25:03 -0700127
128 - job: tools_only
129 displayName: 'Ensure host tools build'
130 pool:
131 vmImage: $(ubuntu_vm)
132 container:
133 image: $(ci_runner_image)
134 options: $(container_option)
135 steps:
136 - script: |
137 make tools-only_config tools-only -j$(nproc)
138
139 - job: envtools
140 displayName: 'Ensure env tools build'
141 pool:
142 vmImage: $(ubuntu_vm)
143 container:
144 image: $(ci_runner_image)
145 options: $(container_option)
146 steps:
147 - script: |
148 make tools-only_config envtools -j$(nproc)
149
150 - job: utils
Tom Rini72618332020-03-11 18:11:15 -0400151 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengbf275222019-10-28 07:25:03 -0700152 pool:
153 vmImage: $(ubuntu_vm)
154 steps:
155 - script: |
Tom Rinib6d4e082022-08-09 21:08:54 -0400156 cat << "EOF" > build.sh
157 cd $(work_dir)
Bin Mengbf275222019-10-28 07:25:03 -0700158 git config --global user.name "Azure Pipelines"
159 git config --global user.email bmeng.cn@gmail.com
Tom Rinib6d4e082022-08-09 21:08:54 -0400160 git config --global --add safe.directory $(work_dir)
Bin Mengbf275222019-10-28 07:25:03 -0700161 export USER=azure
Tom Rini26a426a2020-02-11 12:41:14 -0500162 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700163 . /tmp/venv/bin/activate
Tom Rini38229b52021-02-26 07:52:29 -0500164 pip install -r test/py/requirements.txt
Simon Glassbf0a8132020-03-18 09:42:50 -0600165 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700166 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
167 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa0ac1d92021-03-22 08:22:53 +1300168 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400169 set -ex
Bin Mengbf275222019-10-28 07:25:03 -0700170 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
171 ./tools/buildman/buildman -t
172 ./tools/dtoc/dtoc -t
Simon Glass6bb74de2020-07-05 21:41:55 -0600173 ./tools/patman/patman test
Tom Rini72618332020-03-11 18:11:15 -0400174 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengbf275222019-10-28 07:25:03 -0700175 EOF
176 cat build.sh
177 # We cannot use "container" like other jobs above, as buildman
178 # seems to hang forever with pre-configured "container" environment
179 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
180
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200181 - job: nokia_rx51_test
182 displayName: 'Run tests for Nokia RX-51 (aka N900)'
183 pool:
184 vmImage: $(ubuntu_vm)
185 container:
186 image: $(ci_runner_image)
187 options: $(container_option)
188 steps:
189 - script: |
Pali Rohárce0f7452023-02-21 11:22:29 -0500190 mkdir nokia_rx51_tmp
191 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/
192 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/
193 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/
194 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/
195 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/
196 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/
Tom Rini09ed7e62022-11-22 12:31:58 -0500197 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200198 test/nokia_rx51_test.sh
199
Simon Glass642e51a2022-02-11 13:23:26 -0700200 - job: pylint
201 displayName: Check for any pylint regressions
202 pool:
203 vmImage: $(ubuntu_vm)
204 container:
205 image: $(ci_runner_image)
206 options: $(container_option)
207 steps:
208 - script: |
Tom Rinib6d4e082022-08-09 21:08:54 -0400209 git config --global --add safe.directory $(work_dir)
Simon Glass642e51a2022-02-11 13:23:26 -0700210 export USER=azure
211 pip install -r test/py/requirements.txt
Tom Rinie47bbf72022-03-25 08:19:09 -0400212 pip install asteval pylint==2.12.2 pyopenssl
Simon Glass642e51a2022-02-11 13:23:26 -0700213 export PATH=${PATH}:~/.local/bin
214 echo "[MASTER]" >> .pylintrc
215 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
216 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
217 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400218 set -ex
Simon Glass642e51a2022-02-11 13:23:26 -0700219 pylint --version
220 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
221 make pylint_err
222
Simon Glass441a3d02023-02-13 08:56:39 -0700223 - job: check_for_pre_schema_tags
224 displayName: 'Check for pre-schema driver model tags'
225 pool:
226 vmImage: $(ubuntu_vm)
227 container:
228 image: $(ci_runner_image)
229 options: $(container_option)
230 steps:
231 # If grep succeeds and finds a match the test fails as we should
232 # have no matches.
233 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
234
Simon Glassc21a5282023-02-23 18:18:24 -0700235 - job: check_packing_of_python_tools
236 displayName: 'Check we can package the Python tools'
237 pool:
238 vmImage: $(ubuntu_vm)
239 container:
240 image: $(ci_runner_image)
241 options: $(container_option)
242 steps:
243 - script: make pip
244
Tom Rini67d3e672022-01-11 19:14:28 -0500245- stage: test_py
246 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700247 - job: test_py
248 displayName: 'test.py'
249 pool:
250 vmImage: $(ubuntu_vm)
251 strategy:
252 matrix:
253 sandbox:
254 TEST_PY_BD: "sandbox"
Tom Rini0219d012019-11-06 19:30:47 -0500255 sandbox_clang:
256 TEST_PY_BD: "sandbox"
Tom Rinid7e06782023-03-21 15:07:45 -0400257 OVERRIDE: "-O clang-16"
Simon Glass1aa168c2022-08-03 12:13:09 -0600258 sandbox_nolto:
259 TEST_PY_BD: "sandbox"
260 BUILD_ENV: "NO_LTO=1"
Bin Mengbf275222019-10-28 07:25:03 -0700261 sandbox_spl:
262 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600263 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa31eff32022-04-30 00:56:57 -0600264 sandbox_vpl:
265 TEST_PY_BD: "sandbox_vpl"
Simon Glass8b609872023-04-02 14:01:26 +1200266 TEST_PY_TEST_SPEC: "vpl or test_spl"
Simon Glass6c914e42021-03-15 17:25:34 +1300267 sandbox_noinst:
268 TEST_PY_BD: "sandbox_noinst"
269 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengbf275222019-10-28 07:25:03 -0700270 sandbox_flattree:
271 TEST_PY_BD: "sandbox_flattree"
Simon Glass9cea4792023-01-15 14:16:00 -0700272 sandbox_trace:
273 TEST_PY_BD: "sandbox"
274 BUILD_ENV: "FTRACE=1 NO_LTO=1"
275 TEST_PY_TEST_SPEC: "trace"
276 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700277 coreboot:
278 TEST_PY_BD: "coreboot"
279 TEST_PY_ID: "--id qemu"
280 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700281 evb_ast2500:
282 TEST_PY_BD: "evb-ast2500"
283 TEST_PY_ID: "--id qemu"
Joel Stanleyb24087a2022-06-29 16:35:25 +0930284 evb_ast2600:
285 TEST_PY_BD: "evb-ast2600"
286 TEST_PY_ID: "--id qemu"
Kristian Amlie15e30102021-09-07 08:37:51 +0200287 vexpress_ca9x4:
288 TEST_PY_BD: "vexpress_ca9x4"
289 TEST_PY_ID: "--id qemu"
Bin Mengbf275222019-10-28 07:25:03 -0700290 integratorcp_cm926ejs:
291 TEST_PY_BD: "integratorcp_cm926ejs"
292 TEST_PY_ID: "--id qemu"
293 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700294 qemu_arm:
295 TEST_PY_BD: "qemu_arm"
296 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700297 qemu_arm64:
298 TEST_PY_BD: "qemu_arm64"
299 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzecke35c2a82020-06-06 22:21:47 +0200300 qemu_malta:
301 TEST_PY_BD: "malta"
302 TEST_PY_ID: "--id qemu"
303 TEST_PY_TEST_SPEC: "not sleep and not efi"
304 qemu_maltael:
305 TEST_PY_BD: "maltael"
306 TEST_PY_ID: "--id qemu"
307 TEST_PY_TEST_SPEC: "not sleep and not efi"
308 qemu_malta64:
309 TEST_PY_BD: "malta64"
310 TEST_PY_ID: "--id qemu"
311 TEST_PY_TEST_SPEC: "not sleep and not efi"
312 qemu_malta64el:
313 TEST_PY_BD: "malta64el"
314 TEST_PY_ID: "--id qemu"
315 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengbf275222019-10-28 07:25:03 -0700316 qemu_ppce500:
317 TEST_PY_BD: "qemu-ppce500"
318 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700319 qemu_riscv32:
320 TEST_PY_BD: "qemu-riscv32"
321 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700322 qemu_riscv64:
323 TEST_PY_BD: "qemu-riscv64"
324 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700325 qemu_riscv32_spl:
326 TEST_PY_BD: "qemu-riscv32_spl"
327 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700328 qemu_riscv64_spl:
329 TEST_PY_BD: "qemu-riscv64_spl"
330 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700331 qemu_x86:
332 TEST_PY_BD: "qemu-x86"
333 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700334 qemu_x86_64:
335 TEST_PY_BD: "qemu-x86_64"
336 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut0e125752020-09-14 21:55:58 +0200337 r2dplus_i82557c:
338 TEST_PY_BD: "r2dplus"
339 TEST_PY_ID: "--id i82557c_qemu"
340 r2dplus_pcnet:
341 TEST_PY_BD: "r2dplus"
342 TEST_PY_ID: "--id pcnet_qemu"
343 r2dplus_rtl8139:
344 TEST_PY_BD: "r2dplus"
345 TEST_PY_ID: "--id rtl8139_qemu"
346 r2dplus_tulip:
347 TEST_PY_BD: "r2dplus"
348 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0e60b3a2021-08-26 23:33:35 +0800349 sifive_unleashed_sdcard:
350 TEST_PY_BD: "sifive_unleashed"
351 TEST_PY_ID: "--id sdcard_qemu"
352 sifive_unleashed_spi-nor:
353 TEST_PY_BD: "sifive_unleashed"
354 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100355 xilinx_zynq_virt:
356 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengbf275222019-10-28 07:25:03 -0700357 TEST_PY_ID: "--id qemu"
358 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700359 xilinx_versal_virt:
360 TEST_PY_BD: "xilinx_versal_virt"
361 TEST_PY_ID: "--id qemu"
362 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700363 xtfpga:
364 TEST_PY_BD: "xtfpga"
365 TEST_PY_ID: "--id qemu"
366 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700367 steps:
368 - script: |
369 cat << EOF > test.sh
370 set -ex
371 # make environment variables available as tests are running inside a container
372 export WORK_DIR="${WORK_DIR}"
373 export TEST_PY_BD="${TEST_PY_BD}"
374 export TEST_PY_ID="${TEST_PY_ID}"
375 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
Tom Rini0219d012019-11-06 19:30:47 -0500376 export OVERRIDE="${OVERRIDE}"
Simon Glass1aa168c2022-08-03 12:13:09 -0600377 export BUILD_ENV="${BUILD_ENV}"
Bin Mengbf275222019-10-28 07:25:03 -0700378 EOF
379 cat << "EOF" >> test.sh
380 # the below corresponds to .gitlab-ci.yml "before_script"
381 cd ${WORK_DIR}
Tom Rinibd181a22022-11-21 12:52:40 -0500382 git config --global --add safe.directory ${WORK_DIR}
Tom Rini85ae52b2021-02-24 17:05:04 -0500383 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Bin Mengbf275222019-10-28 07:25:03 -0700384 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
385 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengbf275222019-10-28 07:25:03 -0700386 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
387 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
Bin Meng49fb28a2020-03-28 07:25:29 -0700388 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200389 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
390 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700391 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800392 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200393 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
394 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700395 fi
Bin Mengbf275222019-10-28 07:25:03 -0700396 # the below corresponds to .gitlab-ci.yml "script"
397 cd ${WORK_DIR}
Simon Glass4e32fed2020-03-18 09:42:55 -0600398 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glass9cea4792023-01-15 14:16:00 -0700399 if [ -n "${BUILD_ENV}" ]; then
400 export ${BUILD_ENV};
401 fi
Simon Glass7ec12552020-03-18 09:43:00 -0600402 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200403 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
404 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
405 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200406 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
407 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800408 # create sdcard / spi-nor images for sifive unleashed using genimage
409 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
410 mkdir -p root;
411 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
412 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
413 rm -rf tmp;
414 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
415 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
416 rm -rf tmp;
417 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
418 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
419 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700420 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
421 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
422 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
423 chmod a+x cbfstool;
424 ./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;
425 fi
Tom Rini5d80a1a2019-10-31 10:45:03 -0400426 virtualenv -p /usr/bin/python3 /tmp/venv
427 . /tmp/venv/bin/activate
428 pip install -r test/py/requirements.txt
Tom Rinibe566ab2023-02-28 15:28:48 -0500429 pip install pytest-azurepipelines
Tom Rini5d6f0532019-11-01 13:59:14 -0400430 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengbf275222019-10-28 07:25:03 -0700431 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass4080d092020-03-18 09:42:56 -0600432 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Tom Rini542ae522023-02-28 15:28:49 -0500433 ./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";
Bin Mengbf275222019-10-28 07:25:03 -0700434 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6049d512020-02-07 11:45:55 -0500435 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700436 EOF
437 cat test.sh
438 # make current directory writeable to uboot user inside the container
439 # as sandbox testing need create files like spi flash images, etc.
440 # (TODO: clean up this in the future)
441 chmod 777 .
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300442 # Filesystem tests need extra docker args to run
443 set --
444 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
445 # mount -o loop needs the loop devices
446 if modprobe loop; then
447 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
448 set -- "$@" --device $d:$d
449 done
450 fi
451 # Needed for mount syscall (for guestmount as well)
452 set -- "$@" --cap-add SYS_ADMIN
453 # Default apparmor profile denies mounts
454 set -- "$@" --security-opt apparmor=unconfined
455 fi
Alper Nebi Yasak1aaaf602021-06-21 21:51:55 +0300456 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300457 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
Bin Mengbf275222019-10-28 07:25:03 -0700458
Tom Rini67d3e672022-01-11 19:14:28 -0500459- stage: world_build
460 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700461 - job: build_the_world
462 displayName: 'Build the World'
463 pool:
464 vmImage: $(ubuntu_vm)
465 strategy:
466 # Use almost the same target division in .travis.yml, only merged
Tom Rini11232132022-04-06 09:21:25 -0400467 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengbf275222019-10-28 07:25:03 -0700468 matrix:
Tom Rini11232132022-04-06 09:21:25 -0400469 arc_microblaze_xtensa:
470 BUILDMAN: "arc microblaze xtensa"
Tom Rinidcb0cc02022-12-07 09:16:18 -0500471 amlogic:
472 BUILDMAN: "amlogic"
Bin Mengbf275222019-10-28 07:25:03 -0700473 arm11_arm7_arm920t_arm946es:
474 BUILDMAN: "arm11 arm7 arm920t arm946es"
475 arm926ejs:
Tom Rini5bda1872021-07-08 07:50:08 -0400476 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengbf275222019-10-28 07:25:03 -0700477 at91_non_armv7:
478 BUILDMAN: "at91 -x armv7"
479 at91_non_arm926ejs:
480 BUILDMAN: "at91 -x arm926ejs"
481 boundary_engicam_toradex:
482 BUILDMAN: "boundary engicam toradex"
483 arm_bcm:
484 BUILDMAN: "bcm -x mips"
485 nxp_arm32:
Heiko Schocheraf771622019-11-22 11:17:29 +0100486 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
487 nxp_ls101x:
488 BUILDMAN: "freescale&ls101"
489 nxp_ls102x:
490 BUILDMAN: "freescale&ls102"
491 nxp_ls104x:
492 BUILDMAN: "freescale&ls104"
493 nxp_ls108x:
494 BUILDMAN: "freescale&ls108"
495 nxp_ls20xx:
496 BUILDMAN: "freescale&ls20"
497 nxp_lx216x:
498 BUILDMAN: "freescale&lx216"
Bin Mengbf275222019-10-28 07:25:03 -0700499 imx6:
500 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
501 imx:
Tom Rinidcb0cc02022-12-07 09:16:18 -0500502 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
503 imx8_imx9:
504 BUILDMAN: "imx8 imx9"
Bin Mengbf275222019-10-28 07:25:03 -0700505 keystone2_keystone3:
506 BUILDMAN: "k2 k3"
Andrew Sculleabc4e22022-05-30 10:00:07 +0000507 sandbox_asan:
508 BUILDMAN: "sandbox"
509 OVERRIDE: "-a ASAN"
510 sandbox_clang_asan:
511 BUILDMAN: "sandbox"
Tom Rinid7e06782023-03-21 15:07:45 -0400512 OVERRIDE: "-O clang-16 -a ASAN"
Bin Mengbf275222019-10-28 07:25:03 -0700513 samsung_socfpga:
514 BUILDMAN: "samsung socfpga"
Bin Mengbf275222019-10-28 07:25:03 -0700515 sun4i:
516 BUILDMAN: "sun4i"
517 sun5i:
518 BUILDMAN: "sun5i"
519 sun6i:
520 BUILDMAN: "sun6i"
521 sun7i:
522 BUILDMAN: "sun7i"
523 sun8i_32bit:
524 BUILDMAN: "sun8i&armv7"
525 sun8i_64bit:
526 BUILDMAN: "sun8i&aarch64"
527 sun9i:
528 BUILDMAN: "sun9i"
529 sun50i:
530 BUILDMAN: "sun50i"
531 arm_catch_all:
Tom Rini31289c72021-02-15 10:52:19 -0500532 BUILDMAN: "arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,renesas,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,rk,toradex,socfpga,k2,k3,zynq"
Bin Mengbf275222019-10-28 07:25:03 -0700533 sandbox_x86:
534 BUILDMAN: "sandbox x86"
535 technexion:
536 BUILDMAN: "technexion"
537 kirkwood:
538 BUILDMAN: "kirkwood"
539 mvebu:
540 BUILDMAN: "mvebu"
541 m68k:
542 BUILDMAN: "m68k"
543 mips:
544 BUILDMAN: "mips"
Tom Rini05f958f2022-08-09 21:08:52 -0400545 powerpc:
546 BUILDMAN: "powerpc"
Bin Mengbf275222019-10-28 07:25:03 -0700547 siemens:
548 BUILDMAN: "siemens"
549 tegra:
550 BUILDMAN: "tegra -x toradex"
551 am33xx_no_siemens:
552 BUILDMAN: "am33xx -x siemens"
553 omap:
554 BUILDMAN: "omap"
555 uniphier:
556 BUILDMAN: "uniphier"
557 aarch64_catch_all:
Tom Rinidcb0cc02022-12-07 09:16:18 -0500558 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
Tom Rini478ed232022-12-27 11:48:08 -0500559 rockchip_32bit:
560 BUILDMAN: "rk -x aarch64"
561 rockchip_64bit:
562 BUILDMAN: "rk&aarch64"
Tom Rini31289c72021-02-15 10:52:19 -0500563 renesas:
564 BUILDMAN: "renesas"
Bin Mengbf275222019-10-28 07:25:03 -0700565 zynq:
566 BUILDMAN: "zynq&armv7"
567 zynqmp_versal:
568 BUILDMAN: "versal|zynqmp&aarch64"
569 riscv:
570 BUILDMAN: "riscv"
571 steps:
572 - script: |
573 cat << EOF > build.sh
574 set -ex
575 cd ${WORK_DIR}
576 # make environment variables available as tests are running inside a container
577 export BUILDMAN="${BUILDMAN}"
Tom Rinibd181a22022-11-21 12:52:40 -0500578 git config --global --add safe.directory ${WORK_DIR}
Bin Mengbf275222019-10-28 07:25:03 -0700579 EOF
580 cat << "EOF" >> build.sh
581 if [[ "${BUILDMAN}" != "" ]]; then
582 ret=0;
Tom Rinid7713ad2022-11-09 19:14:53 -0700583 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassdd5c9542020-03-18 09:42:57 -0600584 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600585 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengbf275222019-10-28 07:25:03 -0700586 exit $ret;
587 fi;
588 fi
589 EOF
590 cat build.sh
591 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh