blob: cd54688881d7318b29077ac273bee2fa6ef9d0bf [file] [log] [blame]
Bin Mengd2e680f2019-10-27 05:19:48 -07001variables:
Tom Rini38a98402021-10-31 13:24:42 -04002 windows_vm: windows-2019
Bin Mengbf275222019-10-28 07:25:03 -07003 ubuntu_vm: ubuntu-18.04
Tom Rini7b4116d2020-05-26 20:39:03 -04004 macos_vm: macOS-10.15
Tom Rini17af72e2022-03-15 16:18:16 -04005 ci_runner_image: trini/u-boot-gitlab-ci-runner:focal-20220302-15Mar2022
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%\
Bin Mengf7faddf2020-07-28 02:06:42 -070025 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syyuu"
AKASHI Takahiro9ebfc6b2022-02-09 17:24:23 +090026 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Su"
Bin Mengd2e680f2019-10-27 05:19:48 -070027 displayName: 'Update MSYS2'
28 - script: |
AKASHI Takahirod9612f42022-02-09 19:10:39 +090029 %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 -070030 displayName: 'Install Toolchain'
31 - script: |
Bin Mengd2e680f2019-10-27 05:19:48 -070032 echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh
Bin Mengf7faddf2020-07-28 02:06:42 -070033 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
Bin Mengd2e680f2019-10-27 05:19:48 -070034 displayName: 'Build Host Tools'
35 env:
36 # Tell MSYS2 we need a POSIX emulation layer
37 MSYSTEM: MSYS
38 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
39 CHERE_INVOKING: yes
Bin Mengbf275222019-10-28 07:25:03 -070040
Tom Rini7b4116d2020-05-26 20:39:03 -040041 - job: tools_only_macOS
42 displayName: 'Ensure host tools build for macOS X'
43 pool:
44 vmImage: $(macos_vm)
45 steps:
AKASHI Takahirod9612f42022-02-09 19:10:39 +090046 - script: brew install make ossp-uuid
Tom Rini7b4116d2020-05-26 20:39:03 -040047 displayName: Brew install dependencies
48 - script: |
49 gmake tools-only_config tools-only NO_SDL=1 \
50 HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \
51 HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \
52 -j$(sysctl -n hw.logicalcpu)
53 displayName: 'Perform tools-only build'
54
Tom Rinic1a7de52021-12-14 13:36:41 -050055 - job: check_for_migrated_symbols_in_board_header
56 displayName: 'Check for migrated symbols in board header'
57 pool:
58 vmImage: $(ubuntu_vm)
59 container:
60 image: $(ci_runner_image)
61 options: $(container_option)
62 steps:
63 - script: |
64 KSYMLST=`mktemp`
65 KUSEDLST=`mktemp`
66 cat `find . -name "Kconfig*"` | \
67 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
68 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
69 | sort -u > $KSYMLST
70 for CFG in `find include/configs -name "*.h"`; do
71 grep '#define[[:blank:]]CONFIG_' $CFG | \
72 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' | \
73 sort -u > ${KUSEDLST} || true
Tom Rini576eac82022-03-11 07:12:45 -050074 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
Tom Rinic1a7de52021-12-14 13:36:41 -050075 cut -d , -f 3`
76 if [[ $NUM -ne 0 ]]; then
77 echo "Unmigrated symbols found in $CFG"
78 exit 1
79 fi
80 done
81
Bin Mengbf275222019-10-28 07:25:03 -070082 - job: cppcheck
83 displayName: 'Static code analysis with cppcheck'
84 pool:
85 vmImage: $(ubuntu_vm)
86 container:
87 image: $(ci_runner_image)
88 options: $(container_option)
89 steps:
Simon Glass4ee7f522020-04-05 14:35:43 -060090 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengbf275222019-10-28 07:25:03 -070091
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010092 - job: htmldocs
93 displayName: 'Build HTML documentation'
94 pool:
95 vmImage: $(ubuntu_vm)
96 container:
97 image: $(ci_runner_image)
98 options: $(container_option)
99 steps:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100100 - script: |
101 virtualenv -p /usr/bin/python3 /tmp/venvhtml
102 . /tmp/venvhtml/bin/activate
103 pip install -r doc/sphinx/requirements.txt
104 make htmldocs
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +0100105
Bin Mengbf275222019-10-28 07:25:03 -0700106 - job: todo
107 displayName: 'Search for TODO within source tree'
108 pool:
109 vmImage: $(ubuntu_vm)
110 container:
111 image: $(ci_runner_image)
112 options: $(container_option)
113 steps:
114 - script: grep -r TODO .
115 - script: grep -r FIXME .
116 - script: grep -r HACK . | grep -v HACKKIT
117
118 - job: sloccount
119 displayName: 'Some statistics about the code base'
120 pool:
121 vmImage: $(ubuntu_vm)
122 container:
123 image: $(ci_runner_image)
124 options: $(container_option)
125 steps:
126 - script: sloccount .
127
128 - job: maintainers
129 displayName: 'Ensure all configs have MAINTAINERS entries'
130 pool:
131 vmImage: $(ubuntu_vm)
132 container:
133 image: $(ci_runner_image)
134 options: $(container_option)
135 steps:
136 - script: |
137 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
138
139 - job: tools_only
140 displayName: 'Ensure host 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 tools-only -j$(nproc)
149
150 - job: envtools
151 displayName: 'Ensure env tools build'
152 pool:
153 vmImage: $(ubuntu_vm)
154 container:
155 image: $(ci_runner_image)
156 options: $(container_option)
157 steps:
158 - script: |
159 make tools-only_config envtools -j$(nproc)
160
161 - job: utils
Tom Rini72618332020-03-11 18:11:15 -0400162 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengbf275222019-10-28 07:25:03 -0700163 pool:
164 vmImage: $(ubuntu_vm)
165 steps:
166 - script: |
167 cat << EOF > build.sh
168 set -ex
169 cd ${WORK_DIR}
170 EOF
171 cat << "EOF" >> build.sh
172 git config --global user.name "Azure Pipelines"
173 git config --global user.email bmeng.cn@gmail.com
174 export USER=azure
Tom Rini26a426a2020-02-11 12:41:14 -0500175 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700176 . /tmp/venv/bin/activate
Tom Rini38229b52021-02-26 07:52:29 -0500177 pip install -r test/py/requirements.txt
Simon Glassbf0a8132020-03-18 09:42:50 -0600178 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700179 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
180 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa0ac1d92021-03-22 08:22:53 +1300181 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700182 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
183 ./tools/buildman/buildman -t
184 ./tools/dtoc/dtoc -t
Simon Glass6bb74de2020-07-05 21:41:55 -0600185 ./tools/patman/patman test
Tom Rini72618332020-03-11 18:11:15 -0400186 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengbf275222019-10-28 07:25:03 -0700187 EOF
188 cat build.sh
189 # We cannot use "container" like other jobs above, as buildman
190 # seems to hang forever with pre-configured "container" environment
191 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
192
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200193 - job: nokia_rx51_test
194 displayName: 'Run tests for Nokia RX-51 (aka N900)'
195 pool:
196 vmImage: $(ubuntu_vm)
197 container:
198 image: $(ci_runner_image)
199 options: $(container_option)
200 steps:
201 - script: |
Tom Rinie2d6a772021-10-14 22:21:29 -0400202 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200203 test/nokia_rx51_test.sh
204
Simon Glass642e51a2022-02-11 13:23:26 -0700205 - job: pylint
206 displayName: Check for any pylint regressions
207 pool:
208 vmImage: $(ubuntu_vm)
209 container:
210 image: $(ci_runner_image)
211 options: $(container_option)
212 steps:
213 - script: |
214 cd ${WORK_DIR}
215 export USER=azure
216 pip install -r test/py/requirements.txt
Tom Rinie47bbf72022-03-25 08:19:09 -0400217 pip install asteval pylint==2.12.2 pyopenssl
Simon Glass642e51a2022-02-11 13:23:26 -0700218 export PATH=${PATH}:~/.local/bin
219 echo "[MASTER]" >> .pylintrc
220 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
221 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
222 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
223 pylint --version
224 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
225 make pylint_err
226
Tom Rini67d3e672022-01-11 19:14:28 -0500227- stage: test_py
228 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700229 - job: test_py
230 displayName: 'test.py'
231 pool:
232 vmImage: $(ubuntu_vm)
233 strategy:
234 matrix:
235 sandbox:
236 TEST_PY_BD: "sandbox"
Tom Rini0219d012019-11-06 19:30:47 -0500237 sandbox_clang:
238 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400239 OVERRIDE: "-O clang-13"
Bin Mengbf275222019-10-28 07:25:03 -0700240 sandbox_spl:
241 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600242 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glass6c914e42021-03-15 17:25:34 +1300243 sandbox_noinst:
244 TEST_PY_BD: "sandbox_noinst"
245 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengbf275222019-10-28 07:25:03 -0700246 sandbox_flattree:
247 TEST_PY_BD: "sandbox_flattree"
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700248 coreboot:
249 TEST_PY_BD: "coreboot"
250 TEST_PY_ID: "--id qemu"
251 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700252 evb_ast2500:
253 TEST_PY_BD: "evb-ast2500"
254 TEST_PY_ID: "--id qemu"
Kristian Amlie15e30102021-09-07 08:37:51 +0200255 vexpress_ca9x4:
256 TEST_PY_BD: "vexpress_ca9x4"
257 TEST_PY_ID: "--id qemu"
Bin Mengbf275222019-10-28 07:25:03 -0700258 integratorcp_cm926ejs:
259 TEST_PY_BD: "integratorcp_cm926ejs"
260 TEST_PY_ID: "--id qemu"
261 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700262 qemu_arm:
263 TEST_PY_BD: "qemu_arm"
264 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700265 qemu_arm64:
266 TEST_PY_BD: "qemu_arm64"
267 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzecke35c2a82020-06-06 22:21:47 +0200268 qemu_malta:
269 TEST_PY_BD: "malta"
270 TEST_PY_ID: "--id qemu"
271 TEST_PY_TEST_SPEC: "not sleep and not efi"
272 qemu_maltael:
273 TEST_PY_BD: "maltael"
274 TEST_PY_ID: "--id qemu"
275 TEST_PY_TEST_SPEC: "not sleep and not efi"
276 qemu_malta64:
277 TEST_PY_BD: "malta64"
278 TEST_PY_ID: "--id qemu"
279 TEST_PY_TEST_SPEC: "not sleep and not efi"
280 qemu_malta64el:
281 TEST_PY_BD: "malta64el"
282 TEST_PY_ID: "--id qemu"
283 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengbf275222019-10-28 07:25:03 -0700284 qemu_ppce500:
285 TEST_PY_BD: "qemu-ppce500"
286 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700287 qemu_riscv32:
288 TEST_PY_BD: "qemu-riscv32"
289 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700290 qemu_riscv64:
291 TEST_PY_BD: "qemu-riscv64"
292 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700293 qemu_riscv32_spl:
294 TEST_PY_BD: "qemu-riscv32_spl"
295 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700296 qemu_riscv64_spl:
297 TEST_PY_BD: "qemu-riscv64_spl"
298 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700299 qemu_x86:
300 TEST_PY_BD: "qemu-x86"
301 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700302 qemu_x86_64:
303 TEST_PY_BD: "qemu-x86_64"
304 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut0e125752020-09-14 21:55:58 +0200305 r2dplus_i82557c:
306 TEST_PY_BD: "r2dplus"
307 TEST_PY_ID: "--id i82557c_qemu"
308 r2dplus_pcnet:
309 TEST_PY_BD: "r2dplus"
310 TEST_PY_ID: "--id pcnet_qemu"
311 r2dplus_rtl8139:
312 TEST_PY_BD: "r2dplus"
313 TEST_PY_ID: "--id rtl8139_qemu"
314 r2dplus_tulip:
315 TEST_PY_BD: "r2dplus"
316 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0e60b3a2021-08-26 23:33:35 +0800317 sifive_unleashed_sdcard:
318 TEST_PY_BD: "sifive_unleashed"
319 TEST_PY_ID: "--id sdcard_qemu"
320 sifive_unleashed_spi-nor:
321 TEST_PY_BD: "sifive_unleashed"
322 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100323 xilinx_zynq_virt:
324 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengbf275222019-10-28 07:25:03 -0700325 TEST_PY_ID: "--id qemu"
326 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700327 xilinx_versal_virt:
328 TEST_PY_BD: "xilinx_versal_virt"
329 TEST_PY_ID: "--id qemu"
330 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700331 xtfpga:
332 TEST_PY_BD: "xtfpga"
333 TEST_PY_ID: "--id qemu"
334 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700335 steps:
336 - script: |
337 cat << EOF > test.sh
338 set -ex
339 # make environment variables available as tests are running inside a container
340 export WORK_DIR="${WORK_DIR}"
341 export TEST_PY_BD="${TEST_PY_BD}"
342 export TEST_PY_ID="${TEST_PY_ID}"
343 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
Tom Rini0219d012019-11-06 19:30:47 -0500344 export OVERRIDE="${OVERRIDE}"
Bin Mengbf275222019-10-28 07:25:03 -0700345 EOF
346 cat << "EOF" >> test.sh
347 # the below corresponds to .gitlab-ci.yml "before_script"
348 cd ${WORK_DIR}
Tom Rini85ae52b2021-02-24 17:05:04 -0500349 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 -0700350 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
351 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengbf275222019-10-28 07:25:03 -0700352 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
353 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 -0700354 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200355 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
356 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700357 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800358 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200359 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
360 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700361 fi
Bin Mengbf275222019-10-28 07:25:03 -0700362 # the below corresponds to .gitlab-ci.yml "script"
363 cd ${WORK_DIR}
Simon Glass4e32fed2020-03-18 09:42:55 -0600364 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glass7ec12552020-03-18 09:43:00 -0600365 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200366 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
367 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
368 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200369 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
370 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800371 # create sdcard / spi-nor images for sifive unleashed using genimage
372 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
373 mkdir -p root;
374 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
375 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
376 rm -rf tmp;
377 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
378 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
379 rm -rf tmp;
380 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
381 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
382 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700383 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
384 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
385 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
386 chmod a+x cbfstool;
387 ./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;
388 fi
Tom Rini5d80a1a2019-10-31 10:45:03 -0400389 virtualenv -p /usr/bin/python3 /tmp/venv
390 . /tmp/venv/bin/activate
391 pip install -r test/py/requirements.txt
Tom Rini5d6f0532019-11-01 13:59:14 -0400392 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengbf275222019-10-28 07:25:03 -0700393 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass4080d092020-03-18 09:42:56 -0600394 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Heinrich Schuchardtf3092472020-07-10 22:04:40 +0200395 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID} ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
Bin Mengbf275222019-10-28 07:25:03 -0700396 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6049d512020-02-07 11:45:55 -0500397 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700398 EOF
399 cat test.sh
400 # make current directory writeable to uboot user inside the container
401 # as sandbox testing need create files like spi flash images, etc.
402 # (TODO: clean up this in the future)
403 chmod 777 .
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300404 # Filesystem tests need extra docker args to run
405 set --
406 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
407 # mount -o loop needs the loop devices
408 if modprobe loop; then
409 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
410 set -- "$@" --device $d:$d
411 done
412 fi
413 # Needed for mount syscall (for guestmount as well)
414 set -- "$@" --cap-add SYS_ADMIN
415 # Default apparmor profile denies mounts
416 set -- "$@" --security-opt apparmor=unconfined
417 fi
Alper Nebi Yasak1aaaf602021-06-21 21:51:55 +0300418 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300419 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 -0700420
Tom Rini67d3e672022-01-11 19:14:28 -0500421- stage: world_build
422 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700423 - job: build_the_world
424 displayName: 'Build the World'
425 pool:
426 vmImage: $(ubuntu_vm)
427 strategy:
428 # Use almost the same target division in .travis.yml, only merged
429 # 4 small build jobs (arc/microblaze/nds32/xtensa) into one.
430 matrix:
431 arc_microblaze_nds32_xtensa:
432 BUILDMAN: "arc microblaze nds32 xtensa"
433 arm11_arm7_arm920t_arm946es:
434 BUILDMAN: "arm11 arm7 arm920t arm946es"
435 arm926ejs:
Tom Rini5bda1872021-07-08 07:50:08 -0400436 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengbf275222019-10-28 07:25:03 -0700437 at91_non_armv7:
438 BUILDMAN: "at91 -x armv7"
439 at91_non_arm926ejs:
440 BUILDMAN: "at91 -x arm926ejs"
441 boundary_engicam_toradex:
442 BUILDMAN: "boundary engicam toradex"
443 arm_bcm:
444 BUILDMAN: "bcm -x mips"
445 nxp_arm32:
Heiko Schocheraf771622019-11-22 11:17:29 +0100446 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
447 nxp_ls101x:
448 BUILDMAN: "freescale&ls101"
449 nxp_ls102x:
450 BUILDMAN: "freescale&ls102"
451 nxp_ls104x:
452 BUILDMAN: "freescale&ls104"
453 nxp_ls108x:
454 BUILDMAN: "freescale&ls108"
455 nxp_ls20xx:
456 BUILDMAN: "freescale&ls20"
457 nxp_lx216x:
458 BUILDMAN: "freescale&lx216"
Bin Mengbf275222019-10-28 07:25:03 -0700459 imx6:
460 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
461 imx:
462 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
Tom Rini5ea605c2021-07-27 17:01:28 -0400463 imx8:
464 BUILDMAN: "imx8"
Bin Mengbf275222019-10-28 07:25:03 -0700465 keystone2_keystone3:
466 BUILDMAN: "k2 k3"
467 samsung_socfpga:
468 BUILDMAN: "samsung socfpga"
Bin Mengbf275222019-10-28 07:25:03 -0700469 sun4i:
470 BUILDMAN: "sun4i"
471 sun5i:
472 BUILDMAN: "sun5i"
473 sun6i:
474 BUILDMAN: "sun6i"
475 sun7i:
476 BUILDMAN: "sun7i"
477 sun8i_32bit:
478 BUILDMAN: "sun8i&armv7"
479 sun8i_64bit:
480 BUILDMAN: "sun8i&aarch64"
481 sun9i:
482 BUILDMAN: "sun9i"
483 sun50i:
484 BUILDMAN: "sun50i"
485 arm_catch_all:
Tom Rini31289c72021-02-15 10:52:19 -0500486 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 -0700487 sandbox_x86:
488 BUILDMAN: "sandbox x86"
489 technexion:
490 BUILDMAN: "technexion"
491 kirkwood:
492 BUILDMAN: "kirkwood"
493 mvebu:
494 BUILDMAN: "mvebu"
495 m68k:
496 BUILDMAN: "m68k"
497 mips:
498 BUILDMAN: "mips"
499 non_fsl_ppc:
500 BUILDMAN: "powerpc -x freescale"
501 mpc85xx_freescale:
Simon Glass4a753fb2021-08-01 18:54:42 -0600502 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x bsc91*"
Bin Mengbf275222019-10-28 07:25:03 -0700503 t208xrdb_corenet_ds:
504 BUILDMAN: "t208xrdb corenet_ds"
505 fsl_ppc:
Simon Glass4a753fb2021-08-01 18:54:42 -0600506 BUILDMAN: "mpc83xx&freescale"
Bin Mengbf275222019-10-28 07:25:03 -0700507 t102x:
508 BUILDMAN: "t102*"
509 p1_p2_rdb_pc:
510 BUILDMAN: "p1_p2_rdb_pc"
511 p1010rdb_bsc91:
512 BUILDMAN: "p1010rdb bsc91"
513 siemens:
514 BUILDMAN: "siemens"
515 tegra:
516 BUILDMAN: "tegra -x toradex"
517 am33xx_no_siemens:
518 BUILDMAN: "am33xx -x siemens"
519 omap:
520 BUILDMAN: "omap"
521 uniphier:
522 BUILDMAN: "uniphier"
523 aarch64_catch_all:
Tom Rini5ea605c2021-07-27 17:01:28 -0400524 BUILDMAN: "aarch64 -x bcm,imx8,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
Bin Mengbf275222019-10-28 07:25:03 -0700525 rockchip:
Tom Rini2d4cd122020-03-09 13:01:57 -0400526 BUILDMAN: "rk"
Tom Rini31289c72021-02-15 10:52:19 -0500527 renesas:
528 BUILDMAN: "renesas"
Bin Mengbf275222019-10-28 07:25:03 -0700529 zynq:
530 BUILDMAN: "zynq&armv7"
531 zynqmp_versal:
532 BUILDMAN: "versal|zynqmp&aarch64"
533 riscv:
534 BUILDMAN: "riscv"
535 steps:
536 - script: |
537 cat << EOF > build.sh
538 set -ex
539 cd ${WORK_DIR}
540 # make environment variables available as tests are running inside a container
541 export BUILDMAN="${BUILDMAN}"
542 EOF
543 cat << "EOF" >> build.sh
544 if [[ "${BUILDMAN}" != "" ]]; then
545 ret=0;
Bin Mengaa8544e2021-01-31 16:38:35 +0800546 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassdd5c9542020-03-18 09:42:57 -0600547 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600548 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengbf275222019-10-28 07:25:03 -0700549 exit $ret;
550 fi;
551 fi
552 EOF
553 cat build.sh
554 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh