blob: 314d2771892663df8f51b6516ef2a6d5ddda52dd [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
Tom Rini694943c2022-03-21 21:33:28 -040071 (grep '#define[[:blank:]]CONFIG_' $CFG | \
72 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
73 grep '#undef[[:blank:]]CONFIG_' $CFG | \
74 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
Tom Rinic1a7de52021-12-14 13:36:41 -050075 sort -u > ${KUSEDLST} || true
Tom Rini576eac82022-03-11 07:12:45 -050076 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
Tom Rinic1a7de52021-12-14 13:36:41 -050077 cut -d , -f 3`
78 if [[ $NUM -ne 0 ]]; then
79 echo "Unmigrated symbols found in $CFG"
80 exit 1
81 fi
82 done
83
Bin Mengbf275222019-10-28 07:25:03 -070084 - job: cppcheck
85 displayName: 'Static code analysis with cppcheck'
86 pool:
87 vmImage: $(ubuntu_vm)
88 container:
89 image: $(ci_runner_image)
90 options: $(container_option)
91 steps:
Simon Glass4ee7f522020-04-05 14:35:43 -060092 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengbf275222019-10-28 07:25:03 -070093
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010094 - job: htmldocs
95 displayName: 'Build HTML documentation'
96 pool:
97 vmImage: $(ubuntu_vm)
98 container:
99 image: $(ci_runner_image)
100 options: $(container_option)
101 steps:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100102 - script: |
103 virtualenv -p /usr/bin/python3 /tmp/venvhtml
104 . /tmp/venvhtml/bin/activate
105 pip install -r doc/sphinx/requirements.txt
106 make htmldocs
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +0100107
Bin Mengbf275222019-10-28 07:25:03 -0700108 - job: todo
109 displayName: 'Search for TODO within source tree'
110 pool:
111 vmImage: $(ubuntu_vm)
112 container:
113 image: $(ci_runner_image)
114 options: $(container_option)
115 steps:
116 - script: grep -r TODO .
117 - script: grep -r FIXME .
118 - script: grep -r HACK . | grep -v HACKKIT
119
120 - job: sloccount
121 displayName: 'Some statistics about the code base'
122 pool:
123 vmImage: $(ubuntu_vm)
124 container:
125 image: $(ci_runner_image)
126 options: $(container_option)
127 steps:
128 - script: sloccount .
129
130 - job: maintainers
131 displayName: 'Ensure all configs have MAINTAINERS entries'
132 pool:
133 vmImage: $(ubuntu_vm)
134 container:
135 image: $(ci_runner_image)
136 options: $(container_option)
137 steps:
138 - script: |
139 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
140
141 - job: tools_only
142 displayName: 'Ensure host tools build'
143 pool:
144 vmImage: $(ubuntu_vm)
145 container:
146 image: $(ci_runner_image)
147 options: $(container_option)
148 steps:
149 - script: |
150 make tools-only_config tools-only -j$(nproc)
151
152 - job: envtools
153 displayName: 'Ensure env tools build'
154 pool:
155 vmImage: $(ubuntu_vm)
156 container:
157 image: $(ci_runner_image)
158 options: $(container_option)
159 steps:
160 - script: |
161 make tools-only_config envtools -j$(nproc)
162
163 - job: utils
Tom Rini72618332020-03-11 18:11:15 -0400164 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengbf275222019-10-28 07:25:03 -0700165 pool:
166 vmImage: $(ubuntu_vm)
167 steps:
168 - script: |
169 cat << EOF > build.sh
170 set -ex
171 cd ${WORK_DIR}
172 EOF
173 cat << "EOF" >> build.sh
174 git config --global user.name "Azure Pipelines"
175 git config --global user.email bmeng.cn@gmail.com
176 export USER=azure
Tom Rini26a426a2020-02-11 12:41:14 -0500177 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700178 . /tmp/venv/bin/activate
Tom Rini38229b52021-02-26 07:52:29 -0500179 pip install -r test/py/requirements.txt
Simon Glassbf0a8132020-03-18 09:42:50 -0600180 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700181 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
182 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa0ac1d92021-03-22 08:22:53 +1300183 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700184 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
185 ./tools/buildman/buildman -t
186 ./tools/dtoc/dtoc -t
Simon Glass6bb74de2020-07-05 21:41:55 -0600187 ./tools/patman/patman test
Tom Rini72618332020-03-11 18:11:15 -0400188 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengbf275222019-10-28 07:25:03 -0700189 EOF
190 cat build.sh
191 # We cannot use "container" like other jobs above, as buildman
192 # seems to hang forever with pre-configured "container" environment
193 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
194
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200195 - job: nokia_rx51_test
196 displayName: 'Run tests for Nokia RX-51 (aka N900)'
197 pool:
198 vmImage: $(ubuntu_vm)
199 container:
200 image: $(ci_runner_image)
201 options: $(container_option)
202 steps:
203 - script: |
Tom Rinie2d6a772021-10-14 22:21:29 -0400204 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200205 test/nokia_rx51_test.sh
206
Simon Glass642e51a2022-02-11 13:23:26 -0700207 - job: pylint
208 displayName: Check for any pylint regressions
209 pool:
210 vmImage: $(ubuntu_vm)
211 container:
212 image: $(ci_runner_image)
213 options: $(container_option)
214 steps:
215 - script: |
216 cd ${WORK_DIR}
217 export USER=azure
218 pip install -r test/py/requirements.txt
Tom Rinie47bbf72022-03-25 08:19:09 -0400219 pip install asteval pylint==2.12.2 pyopenssl
Simon Glass642e51a2022-02-11 13:23:26 -0700220 export PATH=${PATH}:~/.local/bin
221 echo "[MASTER]" >> .pylintrc
222 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
223 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
224 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
225 pylint --version
226 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
227 make pylint_err
228
Tom Rini67d3e672022-01-11 19:14:28 -0500229- stage: test_py
230 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700231 - job: test_py
232 displayName: 'test.py'
233 pool:
234 vmImage: $(ubuntu_vm)
235 strategy:
236 matrix:
237 sandbox:
238 TEST_PY_BD: "sandbox"
Tom Rini0219d012019-11-06 19:30:47 -0500239 sandbox_clang:
240 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400241 OVERRIDE: "-O clang-13"
Bin Mengbf275222019-10-28 07:25:03 -0700242 sandbox_spl:
243 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600244 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glass6c914e42021-03-15 17:25:34 +1300245 sandbox_noinst:
246 TEST_PY_BD: "sandbox_noinst"
247 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengbf275222019-10-28 07:25:03 -0700248 sandbox_flattree:
249 TEST_PY_BD: "sandbox_flattree"
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700250 coreboot:
251 TEST_PY_BD: "coreboot"
252 TEST_PY_ID: "--id qemu"
253 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700254 evb_ast2500:
255 TEST_PY_BD: "evb-ast2500"
256 TEST_PY_ID: "--id qemu"
Kristian Amlie15e30102021-09-07 08:37:51 +0200257 vexpress_ca9x4:
258 TEST_PY_BD: "vexpress_ca9x4"
259 TEST_PY_ID: "--id qemu"
Bin Mengbf275222019-10-28 07:25:03 -0700260 integratorcp_cm926ejs:
261 TEST_PY_BD: "integratorcp_cm926ejs"
262 TEST_PY_ID: "--id qemu"
263 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700264 qemu_arm:
265 TEST_PY_BD: "qemu_arm"
266 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700267 qemu_arm64:
268 TEST_PY_BD: "qemu_arm64"
269 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzecke35c2a82020-06-06 22:21:47 +0200270 qemu_malta:
271 TEST_PY_BD: "malta"
272 TEST_PY_ID: "--id qemu"
273 TEST_PY_TEST_SPEC: "not sleep and not efi"
274 qemu_maltael:
275 TEST_PY_BD: "maltael"
276 TEST_PY_ID: "--id qemu"
277 TEST_PY_TEST_SPEC: "not sleep and not efi"
278 qemu_malta64:
279 TEST_PY_BD: "malta64"
280 TEST_PY_ID: "--id qemu"
281 TEST_PY_TEST_SPEC: "not sleep and not efi"
282 qemu_malta64el:
283 TEST_PY_BD: "malta64el"
284 TEST_PY_ID: "--id qemu"
285 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengbf275222019-10-28 07:25:03 -0700286 qemu_ppce500:
287 TEST_PY_BD: "qemu-ppce500"
288 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700289 qemu_riscv32:
290 TEST_PY_BD: "qemu-riscv32"
291 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700292 qemu_riscv64:
293 TEST_PY_BD: "qemu-riscv64"
294 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700295 qemu_riscv32_spl:
296 TEST_PY_BD: "qemu-riscv32_spl"
297 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700298 qemu_riscv64_spl:
299 TEST_PY_BD: "qemu-riscv64_spl"
300 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700301 qemu_x86:
302 TEST_PY_BD: "qemu-x86"
303 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700304 qemu_x86_64:
305 TEST_PY_BD: "qemu-x86_64"
306 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut0e125752020-09-14 21:55:58 +0200307 r2dplus_i82557c:
308 TEST_PY_BD: "r2dplus"
309 TEST_PY_ID: "--id i82557c_qemu"
310 r2dplus_pcnet:
311 TEST_PY_BD: "r2dplus"
312 TEST_PY_ID: "--id pcnet_qemu"
313 r2dplus_rtl8139:
314 TEST_PY_BD: "r2dplus"
315 TEST_PY_ID: "--id rtl8139_qemu"
316 r2dplus_tulip:
317 TEST_PY_BD: "r2dplus"
318 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0e60b3a2021-08-26 23:33:35 +0800319 sifive_unleashed_sdcard:
320 TEST_PY_BD: "sifive_unleashed"
321 TEST_PY_ID: "--id sdcard_qemu"
322 sifive_unleashed_spi-nor:
323 TEST_PY_BD: "sifive_unleashed"
324 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100325 xilinx_zynq_virt:
326 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengbf275222019-10-28 07:25:03 -0700327 TEST_PY_ID: "--id qemu"
328 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700329 xilinx_versal_virt:
330 TEST_PY_BD: "xilinx_versal_virt"
331 TEST_PY_ID: "--id qemu"
332 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700333 xtfpga:
334 TEST_PY_BD: "xtfpga"
335 TEST_PY_ID: "--id qemu"
336 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700337 steps:
338 - script: |
339 cat << EOF > test.sh
340 set -ex
341 # make environment variables available as tests are running inside a container
342 export WORK_DIR="${WORK_DIR}"
343 export TEST_PY_BD="${TEST_PY_BD}"
344 export TEST_PY_ID="${TEST_PY_ID}"
345 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
Tom Rini0219d012019-11-06 19:30:47 -0500346 export OVERRIDE="${OVERRIDE}"
Bin Mengbf275222019-10-28 07:25:03 -0700347 EOF
348 cat << "EOF" >> test.sh
349 # the below corresponds to .gitlab-ci.yml "before_script"
350 cd ${WORK_DIR}
Tom Rini85ae52b2021-02-24 17:05:04 -0500351 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 -0700352 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
353 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengbf275222019-10-28 07:25:03 -0700354 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
355 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 -0700356 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200357 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
358 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700359 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800360 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200361 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
362 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700363 fi
Bin Mengbf275222019-10-28 07:25:03 -0700364 # the below corresponds to .gitlab-ci.yml "script"
365 cd ${WORK_DIR}
Simon Glass4e32fed2020-03-18 09:42:55 -0600366 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glass7ec12552020-03-18 09:43:00 -0600367 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200368 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
369 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
370 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200371 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
372 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800373 # create sdcard / spi-nor images for sifive unleashed using genimage
374 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
375 mkdir -p root;
376 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
377 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
378 rm -rf tmp;
379 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
380 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
381 rm -rf tmp;
382 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
383 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
384 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700385 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
386 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
387 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
388 chmod a+x cbfstool;
389 ./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;
390 fi
Tom Rini5d80a1a2019-10-31 10:45:03 -0400391 virtualenv -p /usr/bin/python3 /tmp/venv
392 . /tmp/venv/bin/activate
393 pip install -r test/py/requirements.txt
Tom Rini5d6f0532019-11-01 13:59:14 -0400394 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengbf275222019-10-28 07:25:03 -0700395 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass4080d092020-03-18 09:42:56 -0600396 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Heinrich Schuchardtf3092472020-07-10 22:04:40 +0200397 ./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 -0700398 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6049d512020-02-07 11:45:55 -0500399 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700400 EOF
401 cat test.sh
402 # make current directory writeable to uboot user inside the container
403 # as sandbox testing need create files like spi flash images, etc.
404 # (TODO: clean up this in the future)
405 chmod 777 .
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300406 # Filesystem tests need extra docker args to run
407 set --
408 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
409 # mount -o loop needs the loop devices
410 if modprobe loop; then
411 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
412 set -- "$@" --device $d:$d
413 done
414 fi
415 # Needed for mount syscall (for guestmount as well)
416 set -- "$@" --cap-add SYS_ADMIN
417 # Default apparmor profile denies mounts
418 set -- "$@" --security-opt apparmor=unconfined
419 fi
Alper Nebi Yasak1aaaf602021-06-21 21:51:55 +0300420 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300421 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 -0700422
Tom Rini67d3e672022-01-11 19:14:28 -0500423- stage: world_build
424 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700425 - job: build_the_world
426 displayName: 'Build the World'
427 pool:
428 vmImage: $(ubuntu_vm)
429 strategy:
430 # Use almost the same target division in .travis.yml, only merged
431 # 4 small build jobs (arc/microblaze/nds32/xtensa) into one.
432 matrix:
433 arc_microblaze_nds32_xtensa:
434 BUILDMAN: "arc microblaze nds32 xtensa"
435 arm11_arm7_arm920t_arm946es:
436 BUILDMAN: "arm11 arm7 arm920t arm946es"
437 arm926ejs:
Tom Rini5bda1872021-07-08 07:50:08 -0400438 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengbf275222019-10-28 07:25:03 -0700439 at91_non_armv7:
440 BUILDMAN: "at91 -x armv7"
441 at91_non_arm926ejs:
442 BUILDMAN: "at91 -x arm926ejs"
443 boundary_engicam_toradex:
444 BUILDMAN: "boundary engicam toradex"
445 arm_bcm:
446 BUILDMAN: "bcm -x mips"
447 nxp_arm32:
Heiko Schocheraf771622019-11-22 11:17:29 +0100448 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
449 nxp_ls101x:
450 BUILDMAN: "freescale&ls101"
451 nxp_ls102x:
452 BUILDMAN: "freescale&ls102"
453 nxp_ls104x:
454 BUILDMAN: "freescale&ls104"
455 nxp_ls108x:
456 BUILDMAN: "freescale&ls108"
457 nxp_ls20xx:
458 BUILDMAN: "freescale&ls20"
459 nxp_lx216x:
460 BUILDMAN: "freescale&lx216"
Bin Mengbf275222019-10-28 07:25:03 -0700461 imx6:
462 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
463 imx:
464 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
Tom Rini5ea605c2021-07-27 17:01:28 -0400465 imx8:
466 BUILDMAN: "imx8"
Bin Mengbf275222019-10-28 07:25:03 -0700467 keystone2_keystone3:
468 BUILDMAN: "k2 k3"
469 samsung_socfpga:
470 BUILDMAN: "samsung socfpga"
Bin Mengbf275222019-10-28 07:25:03 -0700471 sun4i:
472 BUILDMAN: "sun4i"
473 sun5i:
474 BUILDMAN: "sun5i"
475 sun6i:
476 BUILDMAN: "sun6i"
477 sun7i:
478 BUILDMAN: "sun7i"
479 sun8i_32bit:
480 BUILDMAN: "sun8i&armv7"
481 sun8i_64bit:
482 BUILDMAN: "sun8i&aarch64"
483 sun9i:
484 BUILDMAN: "sun9i"
485 sun50i:
486 BUILDMAN: "sun50i"
487 arm_catch_all:
Tom Rini31289c72021-02-15 10:52:19 -0500488 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 -0700489 sandbox_x86:
490 BUILDMAN: "sandbox x86"
491 technexion:
492 BUILDMAN: "technexion"
493 kirkwood:
494 BUILDMAN: "kirkwood"
495 mvebu:
496 BUILDMAN: "mvebu"
497 m68k:
498 BUILDMAN: "m68k"
499 mips:
500 BUILDMAN: "mips"
501 non_fsl_ppc:
502 BUILDMAN: "powerpc -x freescale"
503 mpc85xx_freescale:
Simon Glass4a753fb2021-08-01 18:54:42 -0600504 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 -0700505 t208xrdb_corenet_ds:
506 BUILDMAN: "t208xrdb corenet_ds"
507 fsl_ppc:
Simon Glass4a753fb2021-08-01 18:54:42 -0600508 BUILDMAN: "mpc83xx&freescale"
Bin Mengbf275222019-10-28 07:25:03 -0700509 t102x:
510 BUILDMAN: "t102*"
511 p1_p2_rdb_pc:
512 BUILDMAN: "p1_p2_rdb_pc"
513 p1010rdb_bsc91:
514 BUILDMAN: "p1010rdb bsc91"
515 siemens:
516 BUILDMAN: "siemens"
517 tegra:
518 BUILDMAN: "tegra -x toradex"
519 am33xx_no_siemens:
520 BUILDMAN: "am33xx -x siemens"
521 omap:
522 BUILDMAN: "omap"
523 uniphier:
524 BUILDMAN: "uniphier"
525 aarch64_catch_all:
Tom Rini5ea605c2021-07-27 17:01:28 -0400526 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 -0700527 rockchip:
Tom Rini2d4cd122020-03-09 13:01:57 -0400528 BUILDMAN: "rk"
Tom Rini31289c72021-02-15 10:52:19 -0500529 renesas:
530 BUILDMAN: "renesas"
Bin Mengbf275222019-10-28 07:25:03 -0700531 zynq:
532 BUILDMAN: "zynq&armv7"
533 zynqmp_versal:
534 BUILDMAN: "versal|zynqmp&aarch64"
535 riscv:
536 BUILDMAN: "riscv"
537 steps:
538 - script: |
539 cat << EOF > build.sh
540 set -ex
541 cd ${WORK_DIR}
542 # make environment variables available as tests are running inside a container
543 export BUILDMAN="${BUILDMAN}"
544 EOF
545 cat << "EOF" >> build.sh
546 if [[ "${BUILDMAN}" != "" ]]; then
547 ret=0;
Bin Mengaa8544e2021-01-31 16:38:35 +0800548 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassdd5c9542020-03-18 09:42:57 -0600549 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600550 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengbf275222019-10-28 07:25:03 -0700551 exit $ret;
552 fi;
553 fi
554 EOF
555 cat build.sh
556 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh