blob: 4e5c4b785a76f9c7348db70941546fcfc1660373 [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`
Tom Rini239fe552022-04-11 13:20:00 -040066 RET=0
Tom Rinic1a7de52021-12-14 13:36:41 -050067 cat `find . -name "Kconfig*"` | \
68 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
69 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
70 | sort -u > $KSYMLST
71 for CFG in `find include/configs -name "*.h"`; do
Tom Rini694943c2022-03-21 21:33:28 -040072 (grep '#define[[:blank:]]CONFIG_' $CFG | \
73 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
74 grep '#undef[[:blank:]]CONFIG_' $CFG | \
75 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
Tom Rinic1a7de52021-12-14 13:36:41 -050076 sort -u > ${KUSEDLST} || true
Tom Rini576eac82022-03-11 07:12:45 -050077 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
Tom Rinic1a7de52021-12-14 13:36:41 -050078 cut -d , -f 3`
79 if [[ $NUM -ne 0 ]]; then
Tom Rini239fe552022-04-11 13:20:00 -040080 echo "Unmigrated symbols found in $CFG:"
81 comm -12 ${KSYMLST} ${KUSEDLST}
82 RET=1
Tom Rinic1a7de52021-12-14 13:36:41 -050083 fi
84 done
Tom Rini239fe552022-04-11 13:20:00 -040085 exit $RET
Tom Rinic1a7de52021-12-14 13:36:41 -050086
Bin Mengbf275222019-10-28 07:25:03 -070087 - job: cppcheck
88 displayName: 'Static code analysis with cppcheck'
89 pool:
90 vmImage: $(ubuntu_vm)
91 container:
92 image: $(ci_runner_image)
93 options: $(container_option)
94 steps:
Simon Glass4ee7f522020-04-05 14:35:43 -060095 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengbf275222019-10-28 07:25:03 -070096
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +010097 - job: htmldocs
98 displayName: 'Build HTML documentation'
99 pool:
100 vmImage: $(ubuntu_vm)
101 container:
102 image: $(ci_runner_image)
103 options: $(container_option)
104 steps:
Heinrich Schuchardt836049d2021-01-25 22:06:25 +0100105 - script: |
106 virtualenv -p /usr/bin/python3 /tmp/venvhtml
107 . /tmp/venvhtml/bin/activate
108 pip install -r doc/sphinx/requirements.txt
109 make htmldocs
Heinrich Schuchardt4eb0fc92020-02-21 18:24:02 +0100110
Bin Mengbf275222019-10-28 07:25:03 -0700111 - job: todo
112 displayName: 'Search for TODO within source tree'
113 pool:
114 vmImage: $(ubuntu_vm)
115 container:
116 image: $(ci_runner_image)
117 options: $(container_option)
118 steps:
119 - script: grep -r TODO .
120 - script: grep -r FIXME .
121 - script: grep -r HACK . | grep -v HACKKIT
122
123 - job: sloccount
124 displayName: 'Some statistics about the code base'
125 pool:
126 vmImage: $(ubuntu_vm)
127 container:
128 image: $(ci_runner_image)
129 options: $(container_option)
130 steps:
131 - script: sloccount .
132
133 - job: maintainers
134 displayName: 'Ensure all configs have MAINTAINERS entries'
135 pool:
136 vmImage: $(ubuntu_vm)
137 container:
138 image: $(ci_runner_image)
139 options: $(container_option)
140 steps:
141 - script: |
142 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
143
144 - job: tools_only
145 displayName: 'Ensure host tools build'
146 pool:
147 vmImage: $(ubuntu_vm)
148 container:
149 image: $(ci_runner_image)
150 options: $(container_option)
151 steps:
152 - script: |
153 make tools-only_config tools-only -j$(nproc)
154
155 - job: envtools
156 displayName: 'Ensure env tools build'
157 pool:
158 vmImage: $(ubuntu_vm)
159 container:
160 image: $(ci_runner_image)
161 options: $(container_option)
162 steps:
163 - script: |
164 make tools-only_config envtools -j$(nproc)
165
166 - job: utils
Tom Rini72618332020-03-11 18:11:15 -0400167 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengbf275222019-10-28 07:25:03 -0700168 pool:
169 vmImage: $(ubuntu_vm)
170 steps:
171 - script: |
172 cat << EOF > build.sh
173 set -ex
174 cd ${WORK_DIR}
175 EOF
176 cat << "EOF" >> build.sh
177 git config --global user.name "Azure Pipelines"
178 git config --global user.email bmeng.cn@gmail.com
179 export USER=azure
Tom Rini26a426a2020-02-11 12:41:14 -0500180 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700181 . /tmp/venv/bin/activate
Tom Rini38229b52021-02-26 07:52:29 -0500182 pip install -r test/py/requirements.txt
Simon Glassbf0a8132020-03-18 09:42:50 -0600183 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengbf275222019-10-28 07:25:03 -0700184 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
185 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa0ac1d92021-03-22 08:22:53 +1300186 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
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: |
219 cd ${WORK_DIR}
220 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
228 pylint --version
229 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
230 make pylint_err
231
Tom Rini67d3e672022-01-11 19:14:28 -0500232- stage: test_py
233 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700234 - job: test_py
235 displayName: 'test.py'
236 pool:
237 vmImage: $(ubuntu_vm)
238 strategy:
239 matrix:
240 sandbox:
241 TEST_PY_BD: "sandbox"
Tom Rini0219d012019-11-06 19:30:47 -0500242 sandbox_clang:
243 TEST_PY_BD: "sandbox"
Tom Rini927e0ee2021-10-05 13:51:38 -0400244 OVERRIDE: "-O clang-13"
Bin Mengbf275222019-10-28 07:25:03 -0700245 sandbox_spl:
246 TEST_PY_BD: "sandbox_spl"
Simon Glassafb26ba2020-10-25 20:38:36 -0600247 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa31eff32022-04-30 00:56:57 -0600248 sandbox_vpl:
249 TEST_PY_BD: "sandbox_vpl"
250 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
Simon Glass6c914e42021-03-15 17:25:34 +1300251 sandbox_noinst:
252 TEST_PY_BD: "sandbox_noinst"
253 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengbf275222019-10-28 07:25:03 -0700254 sandbox_flattree:
255 TEST_PY_BD: "sandbox_flattree"
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700256 coreboot:
257 TEST_PY_BD: "coreboot"
258 TEST_PY_ID: "--id qemu"
259 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700260 evb_ast2500:
261 TEST_PY_BD: "evb-ast2500"
262 TEST_PY_ID: "--id qemu"
Kristian Amlie15e30102021-09-07 08:37:51 +0200263 vexpress_ca9x4:
264 TEST_PY_BD: "vexpress_ca9x4"
265 TEST_PY_ID: "--id qemu"
Bin Mengbf275222019-10-28 07:25:03 -0700266 integratorcp_cm926ejs:
267 TEST_PY_BD: "integratorcp_cm926ejs"
268 TEST_PY_ID: "--id qemu"
269 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700270 qemu_arm:
271 TEST_PY_BD: "qemu_arm"
272 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700273 qemu_arm64:
274 TEST_PY_BD: "qemu_arm64"
275 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzecke35c2a82020-06-06 22:21:47 +0200276 qemu_malta:
277 TEST_PY_BD: "malta"
278 TEST_PY_ID: "--id qemu"
279 TEST_PY_TEST_SPEC: "not sleep and not efi"
280 qemu_maltael:
281 TEST_PY_BD: "maltael"
282 TEST_PY_ID: "--id qemu"
283 TEST_PY_TEST_SPEC: "not sleep and not efi"
284 qemu_malta64:
285 TEST_PY_BD: "malta64"
286 TEST_PY_ID: "--id qemu"
287 TEST_PY_TEST_SPEC: "not sleep and not efi"
288 qemu_malta64el:
289 TEST_PY_BD: "malta64el"
290 TEST_PY_ID: "--id qemu"
291 TEST_PY_TEST_SPEC: "not sleep and not efi"
Bin Mengbf275222019-10-28 07:25:03 -0700292 qemu_ppce500:
293 TEST_PY_BD: "qemu-ppce500"
294 TEST_PY_TEST_SPEC: "not sleep"
Bin Menga379d332020-03-28 07:25:27 -0700295 qemu_riscv32:
296 TEST_PY_BD: "qemu-riscv32"
297 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700298 qemu_riscv64:
299 TEST_PY_BD: "qemu-riscv64"
300 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700301 qemu_riscv32_spl:
302 TEST_PY_BD: "qemu-riscv32_spl"
303 TEST_PY_TEST_SPEC: "not sleep"
Bin Meng49fb28a2020-03-28 07:25:29 -0700304 qemu_riscv64_spl:
305 TEST_PY_BD: "qemu-riscv64_spl"
306 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700307 qemu_x86:
308 TEST_PY_BD: "qemu-x86"
309 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700310 qemu_x86_64:
311 TEST_PY_BD: "qemu-x86_64"
312 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasut0e125752020-09-14 21:55:58 +0200313 r2dplus_i82557c:
314 TEST_PY_BD: "r2dplus"
315 TEST_PY_ID: "--id i82557c_qemu"
316 r2dplus_pcnet:
317 TEST_PY_BD: "r2dplus"
318 TEST_PY_ID: "--id pcnet_qemu"
319 r2dplus_rtl8139:
320 TEST_PY_BD: "r2dplus"
321 TEST_PY_ID: "--id rtl8139_qemu"
322 r2dplus_tulip:
323 TEST_PY_BD: "r2dplus"
324 TEST_PY_ID: "--id tulip_qemu"
Bin Meng0e60b3a2021-08-26 23:33:35 +0800325 sifive_unleashed_sdcard:
326 TEST_PY_BD: "sifive_unleashed"
327 TEST_PY_ID: "--id sdcard_qemu"
328 sifive_unleashed_spi-nor:
329 TEST_PY_BD: "sifive_unleashed"
330 TEST_PY_ID: "--id spi-nor_qemu"
Michal Simekf7c6ee72020-02-13 15:03:29 +0100331 xilinx_zynq_virt:
332 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengbf275222019-10-28 07:25:03 -0700333 TEST_PY_ID: "--id qemu"
334 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700335 xilinx_versal_virt:
336 TEST_PY_BD: "xilinx_versal_virt"
337 TEST_PY_ID: "--id qemu"
338 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700339 xtfpga:
340 TEST_PY_BD: "xtfpga"
341 TEST_PY_ID: "--id qemu"
342 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengbf275222019-10-28 07:25:03 -0700343 steps:
344 - script: |
345 cat << EOF > test.sh
346 set -ex
347 # make environment variables available as tests are running inside a container
348 export WORK_DIR="${WORK_DIR}"
349 export TEST_PY_BD="${TEST_PY_BD}"
350 export TEST_PY_ID="${TEST_PY_ID}"
351 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
Tom Rini0219d012019-11-06 19:30:47 -0500352 export OVERRIDE="${OVERRIDE}"
Bin Mengbf275222019-10-28 07:25:03 -0700353 EOF
354 cat << "EOF" >> test.sh
355 # the below corresponds to .gitlab-ci.yml "before_script"
356 cd ${WORK_DIR}
Tom Rini85ae52b2021-02-24 17:05:04 -0500357 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 -0700358 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
359 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengbf275222019-10-28 07:25:03 -0700360 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
361 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 -0700362 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200363 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
364 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700365 fi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800366 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtb6b35fd2021-04-02 11:42:01 +0200367 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
368 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Meng49fb28a2020-03-28 07:25:29 -0700369 fi
Bin Mengbf275222019-10-28 07:25:03 -0700370 # the below corresponds to .gitlab-ci.yml "script"
371 cd ${WORK_DIR}
Simon Glass4e32fed2020-03-18 09:42:55 -0600372 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glass7ec12552020-03-18 09:43:00 -0600373 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200374 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
375 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
376 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt9e0f5ea2020-07-14 00:40:19 +0200377 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
378 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0e60b3a2021-08-26 23:33:35 +0800379 # create sdcard / spi-nor images for sifive unleashed using genimage
380 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
381 mkdir -p root;
382 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
383 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
384 rm -rf tmp;
385 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
386 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
387 rm -rf tmp;
388 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
389 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
390 fi
Simon Glassbfb2a7f2022-01-21 10:23:01 -0700391 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
392 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
393 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
394 chmod a+x cbfstool;
395 ./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;
396 fi
Tom Rini5d80a1a2019-10-31 10:45:03 -0400397 virtualenv -p /usr/bin/python3 /tmp/venv
398 . /tmp/venv/bin/activate
399 pip install -r test/py/requirements.txt
Tom Rini5d6f0532019-11-01 13:59:14 -0400400 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengbf275222019-10-28 07:25:03 -0700401 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass4080d092020-03-18 09:42:56 -0600402 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Heinrich Schuchardtf3092472020-07-10 22:04:40 +0200403 ./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 -0700404 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6049d512020-02-07 11:45:55 -0500405 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengbf275222019-10-28 07:25:03 -0700406 EOF
407 cat test.sh
408 # make current directory writeable to uboot user inside the container
409 # as sandbox testing need create files like spi flash images, etc.
410 # (TODO: clean up this in the future)
411 chmod 777 .
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300412 # Filesystem tests need extra docker args to run
413 set --
414 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
415 # mount -o loop needs the loop devices
416 if modprobe loop; then
417 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
418 set -- "$@" --device $d:$d
419 done
420 fi
421 # Needed for mount syscall (for guestmount as well)
422 set -- "$@" --cap-add SYS_ADMIN
423 # Default apparmor profile denies mounts
424 set -- "$@" --security-opt apparmor=unconfined
425 fi
Alper Nebi Yasak1aaaf602021-06-21 21:51:55 +0300426 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasake22ec9c2021-06-21 21:51:56 +0300427 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 -0700428
Tom Rini67d3e672022-01-11 19:14:28 -0500429- stage: world_build
430 jobs:
Bin Mengbf275222019-10-28 07:25:03 -0700431 - job: build_the_world
432 displayName: 'Build the World'
433 pool:
434 vmImage: $(ubuntu_vm)
435 strategy:
436 # Use almost the same target division in .travis.yml, only merged
Tom Rini11232132022-04-06 09:21:25 -0400437 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengbf275222019-10-28 07:25:03 -0700438 matrix:
Tom Rini11232132022-04-06 09:21:25 -0400439 arc_microblaze_xtensa:
440 BUILDMAN: "arc microblaze xtensa"
Bin Mengbf275222019-10-28 07:25:03 -0700441 arm11_arm7_arm920t_arm946es:
442 BUILDMAN: "arm11 arm7 arm920t arm946es"
443 arm926ejs:
Tom Rini5bda1872021-07-08 07:50:08 -0400444 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengbf275222019-10-28 07:25:03 -0700445 at91_non_armv7:
446 BUILDMAN: "at91 -x armv7"
447 at91_non_arm926ejs:
448 BUILDMAN: "at91 -x arm926ejs"
449 boundary_engicam_toradex:
450 BUILDMAN: "boundary engicam toradex"
451 arm_bcm:
452 BUILDMAN: "bcm -x mips"
453 nxp_arm32:
Heiko Schocheraf771622019-11-22 11:17:29 +0100454 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
455 nxp_ls101x:
456 BUILDMAN: "freescale&ls101"
457 nxp_ls102x:
458 BUILDMAN: "freescale&ls102"
459 nxp_ls104x:
460 BUILDMAN: "freescale&ls104"
461 nxp_ls108x:
462 BUILDMAN: "freescale&ls108"
463 nxp_ls20xx:
464 BUILDMAN: "freescale&ls20"
465 nxp_lx216x:
466 BUILDMAN: "freescale&lx216"
Bin Mengbf275222019-10-28 07:25:03 -0700467 imx6:
468 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
469 imx:
470 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
Tom Rini5ea605c2021-07-27 17:01:28 -0400471 imx8:
472 BUILDMAN: "imx8"
Bin Mengbf275222019-10-28 07:25:03 -0700473 keystone2_keystone3:
474 BUILDMAN: "k2 k3"
475 samsung_socfpga:
476 BUILDMAN: "samsung socfpga"
Bin Mengbf275222019-10-28 07:25:03 -0700477 sun4i:
478 BUILDMAN: "sun4i"
479 sun5i:
480 BUILDMAN: "sun5i"
481 sun6i:
482 BUILDMAN: "sun6i"
483 sun7i:
484 BUILDMAN: "sun7i"
485 sun8i_32bit:
486 BUILDMAN: "sun8i&armv7"
487 sun8i_64bit:
488 BUILDMAN: "sun8i&aarch64"
489 sun9i:
490 BUILDMAN: "sun9i"
491 sun50i:
492 BUILDMAN: "sun50i"
493 arm_catch_all:
Tom Rini31289c72021-02-15 10:52:19 -0500494 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 -0700495 sandbox_x86:
496 BUILDMAN: "sandbox x86"
497 technexion:
498 BUILDMAN: "technexion"
499 kirkwood:
500 BUILDMAN: "kirkwood"
501 mvebu:
502 BUILDMAN: "mvebu"
503 m68k:
504 BUILDMAN: "m68k"
505 mips:
506 BUILDMAN: "mips"
507 non_fsl_ppc:
508 BUILDMAN: "powerpc -x freescale"
509 mpc85xx_freescale:
Simon Glass4a753fb2021-08-01 18:54:42 -0600510 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 -0700511 t208xrdb_corenet_ds:
512 BUILDMAN: "t208xrdb corenet_ds"
513 fsl_ppc:
Simon Glass4a753fb2021-08-01 18:54:42 -0600514 BUILDMAN: "mpc83xx&freescale"
Bin Mengbf275222019-10-28 07:25:03 -0700515 t102x:
516 BUILDMAN: "t102*"
517 p1_p2_rdb_pc:
518 BUILDMAN: "p1_p2_rdb_pc"
519 p1010rdb_bsc91:
520 BUILDMAN: "p1010rdb bsc91"
521 siemens:
522 BUILDMAN: "siemens"
523 tegra:
524 BUILDMAN: "tegra -x toradex"
525 am33xx_no_siemens:
526 BUILDMAN: "am33xx -x siemens"
527 omap:
528 BUILDMAN: "omap"
529 uniphier:
530 BUILDMAN: "uniphier"
531 aarch64_catch_all:
Tom Rini5ea605c2021-07-27 17:01:28 -0400532 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 -0700533 rockchip:
Tom Rini2d4cd122020-03-09 13:01:57 -0400534 BUILDMAN: "rk"
Tom Rini31289c72021-02-15 10:52:19 -0500535 renesas:
536 BUILDMAN: "renesas"
Bin Mengbf275222019-10-28 07:25:03 -0700537 zynq:
538 BUILDMAN: "zynq&armv7"
539 zynqmp_versal:
540 BUILDMAN: "versal|zynqmp&aarch64"
541 riscv:
542 BUILDMAN: "riscv"
543 steps:
544 - script: |
545 cat << EOF > build.sh
546 set -ex
547 cd ${WORK_DIR}
548 # make environment variables available as tests are running inside a container
549 export BUILDMAN="${BUILDMAN}"
550 EOF
551 cat << "EOF" >> build.sh
552 if [[ "${BUILDMAN}" != "" ]]; then
553 ret=0;
Bin Mengaa8544e2021-01-31 16:38:35 +0800554 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassdd5c9542020-03-18 09:42:57 -0600555 if [[ $ret -ne 0 ]]; then
Simon Glassb52f5a12020-03-18 09:42:53 -0600556 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengbf275222019-10-28 07:25:03 -0700557 exit $ret;
558 fi;
559 fi
560 EOF
561 cat build.sh
562 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh