blob: bda762451fd004a563beea991eef12a5dd3d857b [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 Rini17196e42022-10-17 11:10:32 -04005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20221003-17Oct2022
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: |
Bin Mengd2e680f2019-10-27 05:19:48 -070033 echo make tools-only_defconfig tools-only NO_SDL=1 > 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: |
50 gmake tools-only_config tools-only NO_SDL=1 \
51 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 Rinic1a7de52021-12-14 13:36:41 -050056 - job: check_for_migrated_symbols_in_board_header
57 displayName: 'Check for migrated symbols in board header'
58 pool:
59 vmImage: $(ubuntu_vm)
60 container:
61 image: $(ci_runner_image)
62 options: $(container_option)
63 steps:
64 - script: |
65 KSYMLST=`mktemp`
66 KUSEDLST=`mktemp`
Tom Rini239fe552022-04-11 13:20:00 -040067 RET=0
Tom Rinic1a7de52021-12-14 13:36:41 -050068 cat `find . -name "Kconfig*"` | \
69 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
70 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
71 | sort -u > $KSYMLST
72 for CFG in `find include/configs -name "*.h"`; do
Tom Rini694943c2022-03-21 21:33:28 -040073 (grep '#define[[:blank:]]CONFIG_' $CFG | \
74 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
75 grep '#undef[[:blank:]]CONFIG_' $CFG | \
76 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
Tom Rinic1a7de52021-12-14 13:36:41 -050077 sort -u > ${KUSEDLST} || true
Tom Rini576eac82022-03-11 07:12:45 -050078 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
Tom Rinic1a7de52021-12-14 13:36:41 -050079 cut -d , -f 3`
80 if [[ $NUM -ne 0 ]]; then
Tom Rini239fe552022-04-11 13:20:00 -040081 echo "Unmigrated symbols found in $CFG:"
82 comm -12 ${KSYMLST} ${KUSEDLST}
83 RET=1
Tom Rinic1a7de52021-12-14 13:36:41 -050084 fi
85 done
Tom Rini239fe552022-04-11 13:20:00 -040086 exit $RET
Tom Rinic1a7de52021-12-14 13:36:41 -050087
Bin Mengbf275222019-10-28 07:25:03 -070088 - job: cppcheck
89 displayName: 'Static code analysis with cppcheck'
90 pool:
91 vmImage: $(ubuntu_vm)
92 container:
93 image: $(ci_runner_image)
94 options: $(container_option)
95 steps:
Simon Glass4ee7f522020-04-05 14:35:43 -060096 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengbf275222019-10-28 07:25:03 -070097
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010098 - job: htmldocs
99 displayName: 'Build HTML documentation'
100 pool:
101 vmImage: $(ubuntu_vm)
102 container:
103 image: $(ci_runner_image)
104 options: $(container_option)
105 steps:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100106 - script: |
107 virtualenv -p /usr/bin/python3 /tmp/venvhtml
108 . /tmp/venvhtml/bin/activate
109 pip install -r doc/sphinx/requirements.txt
110 make htmldocs
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +0100111
Bin Mengbf275222019-10-28 07:25:03 -0700112 - job: todo
113 displayName: 'Search for TODO within source tree'
114 pool:
115 vmImage: $(ubuntu_vm)
116 container:
117 image: $(ci_runner_image)
118 options: $(container_option)
119 steps:
120 - script: grep -r TODO .
121 - script: grep -r FIXME .
122 - script: grep -r HACK . | grep -v HACKKIT
123
124 - job: sloccount
125 displayName: 'Some statistics about the code base'
126 pool:
127 vmImage: $(ubuntu_vm)
128 container:
129 image: $(ci_runner_image)
130 options: $(container_option)
131 steps:
132 - script: sloccount .
133
134 - job: maintainers
135 displayName: 'Ensure all configs have MAINTAINERS entries'
136 pool:
137 vmImage: $(ubuntu_vm)
138 container:
139 image: $(ci_runner_image)
140 options: $(container_option)
141 steps:
142 - script: |
Simon Glass7ae8a522022-07-11 19:04:09 -0600143 ./tools/buildman/buildman -R
Bin Mengbf275222019-10-28 07:25:03 -0700144
145 - job: tools_only
146 displayName: 'Ensure host tools build'
147 pool:
148 vmImage: $(ubuntu_vm)
149 container:
150 image: $(ci_runner_image)
151 options: $(container_option)
152 steps:
153 - script: |
154 make tools-only_config tools-only -j$(nproc)
155
156 - job: envtools
157 displayName: 'Ensure env tools build'
158 pool:
159 vmImage: $(ubuntu_vm)
160 container:
161 image: $(ci_runner_image)
162 options: $(container_option)
163 steps:
164 - script: |
165 make tools-only_config envtools -j$(nproc)
166
167 - job: utils
Tom Rini72618332020-03-11 18:11:15 -0400168 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengbf275222019-10-28 07:25:03 -0700169 pool:
170 vmImage: $(ubuntu_vm)
171 steps:
172 - script: |
Tom Rinib6d4e082022-08-09 21:08:54 -0400173 cat << "EOF" > build.sh
174 cd $(work_dir)
Bin Mengbf275222019-10-28 07:25:03 -0700175 git config --global user.name "Azure Pipelines"
176 git config --global user.email bmeng.cn@gmail.com
Tom Rinib6d4e082022-08-09 21:08:54 -0400177 git config --global --add safe.directory $(work_dir)
Bin Mengbf275222019-10-28 07:25:03 -0700178 export USER=azure
Tom Rini26a426a2020-02-11 12:41:14 -0500179 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700180 . /tmp/venv/bin/activate
Tom Rini38229b52021-02-26 07:52:29 -0500181 pip install -r test/py/requirements.txt
Simon Glassbf0a8132020-03-18 09:42:50 -0600182 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700183 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
184 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa0ac1d92021-03-22 08:22:53 +1300185 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400186 set -ex
Bin Mengbf275222019-10-28 07:25:03 -0700187 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
188 ./tools/buildman/buildman -t
189 ./tools/dtoc/dtoc -t
Simon Glass6bb74de2020-07-05 21:41:55 -0600190 ./tools/patman/patman test
Tom Rini72618332020-03-11 18:11:15 -0400191 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengbf275222019-10-28 07:25:03 -0700192 EOF
193 cat build.sh
194 # We cannot use "container" like other jobs above, as buildman
195 # seems to hang forever with pre-configured "container" environment
196 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
197
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200198 - job: nokia_rx51_test
199 displayName: 'Run tests for Nokia RX-51 (aka N900)'
200 pool:
201 vmImage: $(ubuntu_vm)
202 container:
203 image: $(ci_runner_image)
204 options: $(container_option)
205 steps:
206 - script: |
Tom Rinie2d6a772021-10-14 22:21:29 -0400207 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár6cfd09d2020-05-17 14:38:22 +0200208 test/nokia_rx51_test.sh
209
Simon Glass642e51a2022-02-11 13:23:26 -0700210 - job: pylint
211 displayName: Check for any pylint regressions
212 pool:
213 vmImage: $(ubuntu_vm)
214 container:
215 image: $(ci_runner_image)
216 options: $(container_option)
217 steps:
218 - script: |
Tom Rinib6d4e082022-08-09 21:08:54 -0400219 git config --global --add safe.directory $(work_dir)
Simon Glass642e51a2022-02-11 13:23:26 -0700220 export USER=azure
221 pip install -r test/py/requirements.txt
Tom Rinie47bbf72022-03-25 08:19:09 -0400222 pip install asteval pylint==2.12.2 pyopenssl
Simon Glass642e51a2022-02-11 13:23:26 -0700223 export PATH=${PATH}:~/.local/bin
224 echo "[MASTER]" >> .pylintrc
225 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
226 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
227 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinib6d4e082022-08-09 21:08:54 -0400228 set -ex
Simon Glass642e51a2022-02-11 13:23:26 -0700229 pylint --version
230 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
231 make pylint_err
232
Tom Rini67d3e672022-01-11 19:14:28 -0500233- stage: test_py
234 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700235 - job: test_py
236 displayName: 'test.py'
237 pool:
238 vmImage: $(ubuntu_vm)
239 strategy:
240 matrix:
241 sandbox:
242 TEST_PY_BD: "sandbox"
Tom Rini0219d012019-11-06 19:30:47 -0500243 sandbox_clang:
244 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400245 OVERRIDE: "-O clang-13"
Simon Glass1aa168c2022-08-03 12:13:09 -0600246 sandbox_nolto:
247 TEST_PY_BD: "sandbox"
248 BUILD_ENV: "NO_LTO=1"
Bin Mengbf275222019-10-28 07:25:03 -0700249 sandbox_spl:
250 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600251 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa31eff32022-04-30 00:56:57 -0600252 sandbox_vpl:
253 TEST_PY_BD: "sandbox_vpl"
254 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
Simon Glass6c914e42021-03-15 17:25:34 +1300255 sandbox_noinst:
256 TEST_PY_BD: "sandbox_noinst"
257 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengbf275222019-10-28 07:25:03 -0700258 sandbox_flattree:
259 TEST_PY_BD: "sandbox_flattree"
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700260 coreboot:
261 TEST_PY_BD: "coreboot"
262 TEST_PY_ID: "--id qemu"
263 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700264 evb_ast2500:
265 TEST_PY_BD: "evb-ast2500"
266 TEST_PY_ID: "--id qemu"
Joel Stanleyb24087a2022-06-29 16:35:25 +0930267 evb_ast2600:
268 TEST_PY_BD: "evb-ast2600"
269 TEST_PY_ID: "--id qemu"
Kristian Amlie15e30102021-09-07 08:37:51 +0200270 vexpress_ca9x4:
271 TEST_PY_BD: "vexpress_ca9x4"
272 TEST_PY_ID: "--id qemu"
Bin Mengbf275222019-10-28 07:25:03 -0700273 integratorcp_cm926ejs:
274 TEST_PY_BD: "integratorcp_cm926ejs"
275 TEST_PY_ID: "--id qemu"
276 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700277 qemu_arm:
278 TEST_PY_BD: "qemu_arm"
279 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700280 qemu_arm64:
281 TEST_PY_BD: "qemu_arm64"
282 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzecke35c2a82020-06-06 22:21:47 +0200283 qemu_malta:
284 TEST_PY_BD: "malta"
285 TEST_PY_ID: "--id qemu"
286 TEST_PY_TEST_SPEC: "not sleep and not efi"
287 qemu_maltael:
288 TEST_PY_BD: "maltael"
289 TEST_PY_ID: "--id qemu"
290 TEST_PY_TEST_SPEC: "not sleep and not efi"
291 qemu_malta64:
292 TEST_PY_BD: "malta64"
293 TEST_PY_ID: "--id qemu"
294 TEST_PY_TEST_SPEC: "not sleep and not efi"
295 qemu_malta64el:
296 TEST_PY_BD: "malta64el"
297 TEST_PY_ID: "--id qemu"
298 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengbf275222019-10-28 07:25:03 -0700299 qemu_ppce500:
300 TEST_PY_BD: "qemu-ppce500"
301 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700302 qemu_riscv32:
303 TEST_PY_BD: "qemu-riscv32"
304 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700305 qemu_riscv64:
306 TEST_PY_BD: "qemu-riscv64"
307 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700308 qemu_riscv32_spl:
309 TEST_PY_BD: "qemu-riscv32_spl"
310 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700311 qemu_riscv64_spl:
312 TEST_PY_BD: "qemu-riscv64_spl"
313 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700314 qemu_x86:
315 TEST_PY_BD: "qemu-x86"
316 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700317 qemu_x86_64:
318 TEST_PY_BD: "qemu-x86_64"
319 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut0e125752020-09-14 21:55:58 +0200320 r2dplus_i82557c:
321 TEST_PY_BD: "r2dplus"
322 TEST_PY_ID: "--id i82557c_qemu"
323 r2dplus_pcnet:
324 TEST_PY_BD: "r2dplus"
325 TEST_PY_ID: "--id pcnet_qemu"
326 r2dplus_rtl8139:
327 TEST_PY_BD: "r2dplus"
328 TEST_PY_ID: "--id rtl8139_qemu"
329 r2dplus_tulip:
330 TEST_PY_BD: "r2dplus"
331 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0e60b3a2021-08-26 23:33:35 +0800332 sifive_unleashed_sdcard:
333 TEST_PY_BD: "sifive_unleashed"
334 TEST_PY_ID: "--id sdcard_qemu"
335 sifive_unleashed_spi-nor:
336 TEST_PY_BD: "sifive_unleashed"
337 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100338 xilinx_zynq_virt:
339 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengbf275222019-10-28 07:25:03 -0700340 TEST_PY_ID: "--id qemu"
341 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700342 xilinx_versal_virt:
343 TEST_PY_BD: "xilinx_versal_virt"
344 TEST_PY_ID: "--id qemu"
345 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700346 xtfpga:
347 TEST_PY_BD: "xtfpga"
348 TEST_PY_ID: "--id qemu"
349 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700350 steps:
351 - script: |
352 cat << EOF > test.sh
353 set -ex
354 # make environment variables available as tests are running inside a container
355 export WORK_DIR="${WORK_DIR}"
356 export TEST_PY_BD="${TEST_PY_BD}"
357 export TEST_PY_ID="${TEST_PY_ID}"
358 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
Tom Rini0219d012019-11-06 19:30:47 -0500359 export OVERRIDE="${OVERRIDE}"
Simon Glass1aa168c2022-08-03 12:13:09 -0600360 export BUILD_ENV="${BUILD_ENV}"
Bin Mengbf275222019-10-28 07:25:03 -0700361 EOF
362 cat << "EOF" >> test.sh
363 # the below corresponds to .gitlab-ci.yml "before_script"
364 cd ${WORK_DIR}
Tom Rini85ae52b2021-02-24 17:05:04 -0500365 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 -0700366 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
367 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengbf275222019-10-28 07:25:03 -0700368 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
369 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 -0700370 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200371 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
372 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700373 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800374 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200375 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
376 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700377 fi
Bin Mengbf275222019-10-28 07:25:03 -0700378 # the below corresponds to .gitlab-ci.yml "script"
379 cd ${WORK_DIR}
Simon Glass4e32fed2020-03-18 09:42:55 -0600380 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glass7ec12552020-03-18 09:43:00 -0600381 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200382 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
383 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
384 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200385 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
386 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800387 # create sdcard / spi-nor images for sifive unleashed using genimage
388 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
389 mkdir -p root;
390 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
391 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
392 rm -rf tmp;
393 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
394 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
395 rm -rf tmp;
396 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
397 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
398 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700399 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
400 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
401 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
402 chmod a+x cbfstool;
403 ./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;
404 fi
Tom Rini5d80a1a2019-10-31 10:45:03 -0400405 virtualenv -p /usr/bin/python3 /tmp/venv
406 . /tmp/venv/bin/activate
407 pip install -r test/py/requirements.txt
Tom Rini5d6f0532019-11-01 13:59:14 -0400408 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengbf275222019-10-28 07:25:03 -0700409 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass4080d092020-03-18 09:42:56 -0600410 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Heinrich Schuchardtf3092472020-07-10 22:04:40 +0200411 ./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 -0700412 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6049d512020-02-07 11:45:55 -0500413 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700414 EOF
415 cat test.sh
416 # make current directory writeable to uboot user inside the container
417 # as sandbox testing need create files like spi flash images, etc.
418 # (TODO: clean up this in the future)
419 chmod 777 .
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300420 # Filesystem tests need extra docker args to run
421 set --
422 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
423 # mount -o loop needs the loop devices
424 if modprobe loop; then
425 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
426 set -- "$@" --device $d:$d
427 done
428 fi
429 # Needed for mount syscall (for guestmount as well)
430 set -- "$@" --cap-add SYS_ADMIN
431 # Default apparmor profile denies mounts
432 set -- "$@" --security-opt apparmor=unconfined
433 fi
Alper Nebi Yasak1aaaf602021-06-21 21:51:55 +0300434 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300435 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 -0700436
Tom Rini67d3e672022-01-11 19:14:28 -0500437- stage: world_build
438 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700439 - job: build_the_world
440 displayName: 'Build the World'
441 pool:
442 vmImage: $(ubuntu_vm)
443 strategy:
444 # Use almost the same target division in .travis.yml, only merged
Tom Rini11232132022-04-06 09:21:25 -0400445 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengbf275222019-10-28 07:25:03 -0700446 matrix:
Tom Rini11232132022-04-06 09:21:25 -0400447 arc_microblaze_xtensa:
448 BUILDMAN: "arc microblaze xtensa"
Bin Mengbf275222019-10-28 07:25:03 -0700449 arm11_arm7_arm920t_arm946es:
450 BUILDMAN: "arm11 arm7 arm920t arm946es"
451 arm926ejs:
Tom Rini5bda1872021-07-08 07:50:08 -0400452 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengbf275222019-10-28 07:25:03 -0700453 at91_non_armv7:
454 BUILDMAN: "at91 -x armv7"
455 at91_non_arm926ejs:
456 BUILDMAN: "at91 -x arm926ejs"
457 boundary_engicam_toradex:
458 BUILDMAN: "boundary engicam toradex"
459 arm_bcm:
460 BUILDMAN: "bcm -x mips"
461 nxp_arm32:
Heiko Schocheraf771622019-11-22 11:17:29 +0100462 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
463 nxp_ls101x:
464 BUILDMAN: "freescale&ls101"
465 nxp_ls102x:
466 BUILDMAN: "freescale&ls102"
467 nxp_ls104x:
468 BUILDMAN: "freescale&ls104"
469 nxp_ls108x:
470 BUILDMAN: "freescale&ls108"
471 nxp_ls20xx:
472 BUILDMAN: "freescale&ls20"
473 nxp_lx216x:
474 BUILDMAN: "freescale&lx216"
Bin Mengbf275222019-10-28 07:25:03 -0700475 imx6:
476 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
477 imx:
478 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
Tom Rini5ea605c2021-07-27 17:01:28 -0400479 imx8:
480 BUILDMAN: "imx8"
Bin Mengbf275222019-10-28 07:25:03 -0700481 keystone2_keystone3:
482 BUILDMAN: "k2 k3"
Andrew Sculleabc4e22022-05-30 10:00:07 +0000483 sandbox_asan:
484 BUILDMAN: "sandbox"
485 OVERRIDE: "-a ASAN"
486 sandbox_clang_asan:
487 BUILDMAN: "sandbox"
488 OVERRIDE: "-O clang-13 -a ASAN"
Bin Mengbf275222019-10-28 07:25:03 -0700489 samsung_socfpga:
490 BUILDMAN: "samsung socfpga"
Bin Mengbf275222019-10-28 07:25:03 -0700491 sun4i:
492 BUILDMAN: "sun4i"
493 sun5i:
494 BUILDMAN: "sun5i"
495 sun6i:
496 BUILDMAN: "sun6i"
497 sun7i:
498 BUILDMAN: "sun7i"
499 sun8i_32bit:
500 BUILDMAN: "sun8i&armv7"
501 sun8i_64bit:
502 BUILDMAN: "sun8i&aarch64"
503 sun9i:
504 BUILDMAN: "sun9i"
505 sun50i:
506 BUILDMAN: "sun50i"
507 arm_catch_all:
Tom Rini31289c72021-02-15 10:52:19 -0500508 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 -0700509 sandbox_x86:
510 BUILDMAN: "sandbox x86"
511 technexion:
512 BUILDMAN: "technexion"
513 kirkwood:
514 BUILDMAN: "kirkwood"
515 mvebu:
516 BUILDMAN: "mvebu"
517 m68k:
518 BUILDMAN: "m68k"
519 mips:
520 BUILDMAN: "mips"
Tom Rini05f958f2022-08-09 21:08:52 -0400521 powerpc:
522 BUILDMAN: "powerpc"
Bin Mengbf275222019-10-28 07:25:03 -0700523 siemens:
524 BUILDMAN: "siemens"
525 tegra:
526 BUILDMAN: "tegra -x toradex"
527 am33xx_no_siemens:
528 BUILDMAN: "am33xx -x siemens"
529 omap:
530 BUILDMAN: "omap"
531 uniphier:
532 BUILDMAN: "uniphier"
533 aarch64_catch_all:
Tom Rini5ea605c2021-07-27 17:01:28 -0400534 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 -0700535 rockchip:
Tom Rini2d4cd122020-03-09 13:01:57 -0400536 BUILDMAN: "rk"
Tom Rini31289c72021-02-15 10:52:19 -0500537 renesas:
538 BUILDMAN: "renesas"
Bin Mengbf275222019-10-28 07:25:03 -0700539 zynq:
540 BUILDMAN: "zynq&armv7"
541 zynqmp_versal:
542 BUILDMAN: "versal|zynqmp&aarch64"
543 riscv:
544 BUILDMAN: "riscv"
545 steps:
546 - script: |
547 cat << EOF > build.sh
548 set -ex
549 cd ${WORK_DIR}
550 # make environment variables available as tests are running inside a container
551 export BUILDMAN="${BUILDMAN}"
552 EOF
553 cat << "EOF" >> build.sh
554 if [[ "${BUILDMAN}" != "" ]]; then
555 ret=0;
Bin Mengaa8544e2021-01-31 16:38:35 +0800556 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassdd5c9542020-03-18 09:42:57 -0600557 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600558 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengbf275222019-10-28 07:25:03 -0700559 exit $ret;
560 fi;
561 fi
562 EOF
563 cat build.sh
564 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh