blob: 8327edf87aa14434cfa55ffc8132ccbd2f1fbc45 [file] [log] [blame]
Bin Mengc7072d12019-10-27 05:19:48 -07001variables:
Tom Rinid5f27cb2021-10-31 13:24:42 -04002 windows_vm: windows-2019
Tom Rini9f151fe2022-08-08 22:44:45 -04003 ubuntu_vm: ubuntu-22.04
Tom Rini72d5de52022-07-27 11:10:24 -04004 macos_vm: macOS-12
Tom Rini65816322023-02-07 12:32:19 -05005 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230126-10Feb2023
Bin Mengddaa6b12019-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 Mengc7072d12019-10-27 05:19:48 -070011
Tom Rini4c268a62022-01-11 19:14:28 -050012stages:
13- stage: testsuites
14 jobs:
Bin Mengc7072d12019-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 Mengc7072d12019-10-27 05:19:48 -070019 steps:
Bin Meng31c3bce2020-07-28 02:06:44 -070020 - powershell: |
Bin Mengbd97b0d2021-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 Mengc7072d12019-10-27 05:19:48 -070022 displayName: 'Install MSYS2'
23 - script: |
Bin Meng31c3bce2020-07-28 02:06:44 -070024 sfx.exe -y -o%CD:~0,2%\
Tom Rinic7f4e6a2022-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 Mengc7072d12019-10-27 05:19:48 -070028 displayName: 'Update MSYS2'
29 - script: |
AKASHI Takahiroba212432022-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 Mengc7072d12019-10-27 05:19:48 -070031 displayName: 'Install Toolchain'
32 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050033 echo make tools-only_defconfig tools-only > build-tools.sh
Bin Meng8c655152020-07-28 02:06:42 -070034 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
Bin Mengc7072d12019-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 Mengddaa6b12019-10-28 07:25:03 -070041
Tom Riniab1e85b2020-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 Takahiroba212432022-02-09 19:10:39 +090047 - script: brew install make ossp-uuid
Tom Riniab1e85b2020-05-26 20:39:03 -040048 displayName: Brew install dependencies
49 - script: |
Tom Riniea79bb72022-11-19 18:45:43 -050050 gmake tools-only_config tools-only \
Tom Riniab1e85b2020-05-26 20:39:03 -040051 HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \
52 HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \
53 -j$(sysctl -n hw.logicalcpu)
54 displayName: 'Perform tools-only build'
55
Tom Rini1cc7e4c2022-12-04 10:14:15 -050056 - job: check_for_new_CONFIG_symbols_outside_Kconfig
57 displayName: 'Check for new CONFIG symbols outside Kconfig'
Tom Rinibdfa3762021-12-14 13:36:41 -050058 pool:
59 vmImage: $(ubuntu_vm)
60 container:
61 image: $(ci_runner_image)
62 options: $(container_option)
63 steps:
Tom Rini1cc7e4c2022-12-04 10:14:15 -050064 # If grep succeeds and finds a match the test fails as we should
65 # have no matches.
66 - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
Tom Rini8f7345c2023-01-10 11:19:46 -050067 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
68 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
Tom Rinibdfa3762021-12-14 13:36:41 -050069
Bin Mengddaa6b12019-10-28 07:25:03 -070070 - job: cppcheck
71 displayName: 'Static code analysis with cppcheck'
72 pool:
73 vmImage: $(ubuntu_vm)
74 container:
75 image: $(ci_runner_image)
76 options: $(container_option)
77 steps:
Simon Glasscd1ccfa2020-04-05 14:35:43 -060078 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
Bin Mengddaa6b12019-10-28 07:25:03 -070079
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010080 - job: docs
81 displayName: 'Build documentation'
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010082 pool:
83 vmImage: $(ubuntu_vm)
84 container:
85 image: $(ci_runner_image)
86 options: $(container_option)
87 steps:
Heinrich Schuchardt846abe42021-01-25 22:06:25 +010088 - script: |
89 virtualenv -p /usr/bin/python3 /tmp/venvhtml
90 . /tmp/venvhtml/bin/activate
91 pip install -r doc/sphinx/requirements.txt
92 make htmldocs
Heinrich Schuchardt54de2412023-01-12 20:30:58 +010093 make infodocs
Heinrich Schuchardtfbf2bf92020-02-21 18:24:02 +010094
Bin Mengddaa6b12019-10-28 07:25:03 -070095 - job: todo
96 displayName: 'Search for TODO within source tree'
97 pool:
98 vmImage: $(ubuntu_vm)
99 container:
100 image: $(ci_runner_image)
101 options: $(container_option)
102 steps:
103 - script: grep -r TODO .
104 - script: grep -r FIXME .
105 - script: grep -r HACK . | grep -v HACKKIT
106
107 - job: sloccount
108 displayName: 'Some statistics about the code base'
109 pool:
110 vmImage: $(ubuntu_vm)
111 container:
112 image: $(ci_runner_image)
113 options: $(container_option)
114 steps:
115 - script: sloccount .
116
117 - job: maintainers
118 displayName: 'Ensure all configs have MAINTAINERS entries'
119 pool:
120 vmImage: $(ubuntu_vm)
121 container:
122 image: $(ci_runner_image)
123 options: $(container_option)
124 steps:
125 - script: |
Simon Glass12d9b5d2022-07-11 19:04:09 -0600126 ./tools/buildman/buildman -R
Bin Mengddaa6b12019-10-28 07:25:03 -0700127
128 - job: tools_only
129 displayName: 'Ensure host tools build'
130 pool:
131 vmImage: $(ubuntu_vm)
132 container:
133 image: $(ci_runner_image)
134 options: $(container_option)
135 steps:
136 - script: |
137 make tools-only_config tools-only -j$(nproc)
138
139 - job: envtools
140 displayName: 'Ensure env tools build'
141 pool:
142 vmImage: $(ubuntu_vm)
143 container:
144 image: $(ci_runner_image)
145 options: $(container_option)
146 steps:
147 - script: |
148 make tools-only_config envtools -j$(nproc)
149
150 - job: utils
Tom Rini0b3e0c42020-03-11 18:11:15 -0400151 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
Bin Mengddaa6b12019-10-28 07:25:03 -0700152 pool:
153 vmImage: $(ubuntu_vm)
154 steps:
155 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400156 cat << "EOF" > build.sh
157 cd $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700158 git config --global user.name "Azure Pipelines"
159 git config --global user.email bmeng.cn@gmail.com
Tom Rinid1ed4462022-08-09 21:08:54 -0400160 git config --global --add safe.directory $(work_dir)
Bin Mengddaa6b12019-10-28 07:25:03 -0700161 export USER=azure
Tom Rini6c883102020-02-11 12:41:14 -0500162 virtualenv -p /usr/bin/python3 /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700163 . /tmp/venv/bin/activate
Tom Rini70c66dd2021-02-26 07:52:29 -0500164 pip install -r test/py/requirements.txt
Simon Glass9e589c02020-03-18 09:42:50 -0600165 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
Bin Mengddaa6b12019-10-28 07:25:03 -0700166 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
167 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
Simon Glassa26d8fe2021-03-22 08:22:53 +1300168 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinid1ed4462022-08-09 21:08:54 -0400169 set -ex
Bin Mengddaa6b12019-10-28 07:25:03 -0700170 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
171 ./tools/buildman/buildman -t
172 ./tools/dtoc/dtoc -t
Simon Glass109e84e2020-07-05 21:41:55 -0600173 ./tools/patman/patman test
Tom Rini0b3e0c42020-03-11 18:11:15 -0400174 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
Bin Mengddaa6b12019-10-28 07:25:03 -0700175 EOF
176 cat build.sh
177 # We cannot use "container" like other jobs above, as buildman
178 # seems to hang forever with pre-configured "container" environment
179 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
180
Pali Rohár80ad67b2020-05-17 14:38:22 +0200181 - job: nokia_rx51_test
182 displayName: 'Run tests for Nokia RX-51 (aka N900)'
183 pool:
184 vmImage: $(ubuntu_vm)
185 container:
186 image: $(ci_runner_image)
187 options: $(container_option)
188 steps:
189 - script: |
Tom Rini77d48f12022-11-22 12:31:58 -0500190 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
Pali Rohár80ad67b2020-05-17 14:38:22 +0200191 test/nokia_rx51_test.sh
192
Simon Glassf6903262022-02-11 13:23:26 -0700193 - job: pylint
194 displayName: Check for any pylint regressions
195 pool:
196 vmImage: $(ubuntu_vm)
197 container:
198 image: $(ci_runner_image)
199 options: $(container_option)
200 steps:
201 - script: |
Tom Rinid1ed4462022-08-09 21:08:54 -0400202 git config --global --add safe.directory $(work_dir)
Simon Glassf6903262022-02-11 13:23:26 -0700203 export USER=azure
204 pip install -r test/py/requirements.txt
Tom Rini090ff812022-03-25 08:19:09 -0400205 pip install asteval pylint==2.12.2 pyopenssl
Simon Glassf6903262022-02-11 13:23:26 -0700206 export PATH=${PATH}:~/.local/bin
207 echo "[MASTER]" >> .pylintrc
208 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
209 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
210 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
Tom Rinid1ed4462022-08-09 21:08:54 -0400211 set -ex
Simon Glassf6903262022-02-11 13:23:26 -0700212 pylint --version
213 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
214 make pylint_err
215
Simon Glassf96763a2023-02-13 08:56:39 -0700216 - job: check_for_pre_schema_tags
217 displayName: 'Check for pre-schema driver model tags'
218 pool:
219 vmImage: $(ubuntu_vm)
220 container:
221 image: $(ci_runner_image)
222 options: $(container_option)
223 steps:
224 # If grep succeeds and finds a match the test fails as we should
225 # have no matches.
226 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
227
Tom Rini4c268a62022-01-11 19:14:28 -0500228- stage: test_py
229 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700230 - job: test_py
231 displayName: 'test.py'
232 pool:
233 vmImage: $(ubuntu_vm)
234 strategy:
235 matrix:
236 sandbox:
237 TEST_PY_BD: "sandbox"
Tom Rini99a1bb32019-11-06 19:30:47 -0500238 sandbox_clang:
239 TEST_PY_BD: "sandbox"
Tom Rini77d48f12022-11-22 12:31:58 -0500240 OVERRIDE: "-O clang-14"
Simon Glass2e32f5d2022-08-03 12:13:09 -0600241 sandbox_nolto:
242 TEST_PY_BD: "sandbox"
243 BUILD_ENV: "NO_LTO=1"
Bin Mengddaa6b12019-10-28 07:25:03 -0700244 sandbox_spl:
245 TEST_PY_BD: "sandbox_spl"
Simon Glass36a69e12020-10-25 20:38:36 -0600246 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Simon Glassa2a4eea2022-04-30 00:56:57 -0600247 sandbox_vpl:
248 TEST_PY_BD: "sandbox_vpl"
249 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
Simon Glass492f0b02021-03-15 17:25:34 +1300250 sandbox_noinst:
251 TEST_PY_BD: "sandbox_noinst"
252 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
Bin Mengddaa6b12019-10-28 07:25:03 -0700253 sandbox_flattree:
254 TEST_PY_BD: "sandbox_flattree"
Simon Glassc2f01902023-01-15 14:16:00 -0700255 sandbox_trace:
256 TEST_PY_BD: "sandbox"
257 BUILD_ENV: "FTRACE=1 NO_LTO=1"
258 TEST_PY_TEST_SPEC: "trace"
259 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
Simon Glass13e1fa02022-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 Mengddaa6b12019-10-28 07:25:03 -0700264 evb_ast2500:
265 TEST_PY_BD: "evb-ast2500"
266 TEST_PY_ID: "--id qemu"
Joel Stanley3f21e1b2022-06-29 16:35:25 +0930267 evb_ast2600:
268 TEST_PY_BD: "evb-ast2600"
269 TEST_PY_ID: "--id qemu"
Kristian Amlie8f8a2992021-09-07 08:37:51 +0200270 vexpress_ca9x4:
271 TEST_PY_BD: "vexpress_ca9x4"
272 TEST_PY_ID: "--id qemu"
Bin Mengddaa6b12019-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 Mengddaa6b12019-10-28 07:25:03 -0700277 qemu_arm:
278 TEST_PY_BD: "qemu_arm"
279 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700280 qemu_arm64:
281 TEST_PY_BD: "qemu_arm64"
282 TEST_PY_TEST_SPEC: "not sleep"
Daniel Schwierzeck879bc742020-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 Mengddaa6b12019-10-28 07:25:03 -0700299 qemu_ppce500:
300 TEST_PY_BD: "qemu-ppce500"
301 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengaeb3ea42020-03-28 07:25:27 -0700302 qemu_riscv32:
303 TEST_PY_BD: "qemu-riscv32"
304 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700305 qemu_riscv64:
306 TEST_PY_BD: "qemu-riscv64"
307 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700308 qemu_riscv32_spl:
309 TEST_PY_BD: "qemu-riscv32_spl"
310 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengb68d9d62020-03-28 07:25:29 -0700311 qemu_riscv64_spl:
312 TEST_PY_BD: "qemu-riscv64_spl"
313 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700314 qemu_x86:
315 TEST_PY_BD: "qemu-x86"
316 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-10-28 07:25:03 -0700317 qemu_x86_64:
318 TEST_PY_BD: "qemu-x86_64"
319 TEST_PY_TEST_SPEC: "not sleep"
Marek Vasutfc5a9d72020-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 Meng0ae41062021-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 Simekf8834fd2020-02-13 15:03:29 +0100338 xilinx_zynq_virt:
339 TEST_PY_BD: "xilinx_zynq_virt"
Bin Mengddaa6b12019-10-28 07:25:03 -0700340 TEST_PY_ID: "--id qemu"
341 TEST_PY_TEST_SPEC: "not sleep"
Bin Mengddaa6b12019-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 Mengddaa6b12019-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 Mengddaa6b12019-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 Rini99a1bb32019-11-06 19:30:47 -0500359 export OVERRIDE="${OVERRIDE}"
Simon Glass2e32f5d2022-08-03 12:13:09 -0600360 export BUILD_ENV="${BUILD_ENV}"
Bin Mengddaa6b12019-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 Rinie0f979b2022-11-21 12:52:40 -0500365 git config --global --add safe.directory ${WORK_DIR}
Tom Rini2a1df582021-02-24 17:05:04 -0500366 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
Bin Mengddaa6b12019-10-28 07:25:03 -0700367 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
368 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
Bin Mengddaa6b12019-10-28 07:25:03 -0700369 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
370 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
Bin Mengb68d9d62020-03-28 07:25:29 -0700371 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
Heinrich Schuchardtac1b4002021-04-02 11:42:01 +0200372 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
373 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
Bin Mengb68d9d62020-03-28 07:25:29 -0700374 fi
Bin Meng0ae41062021-08-26 23:33:35 +0800375 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
Heinrich Schuchardtac1b4002021-04-02 11:42:01 +0200376 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
377 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
Bin Mengb68d9d62020-03-28 07:25:29 -0700378 fi
Bin Mengddaa6b12019-10-28 07:25:03 -0700379 # the below corresponds to .gitlab-ci.yml "script"
380 cd ${WORK_DIR}
Simon Glass28d83e72020-03-18 09:42:55 -0600381 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
Simon Glassc2f01902023-01-15 14:16:00 -0700382 if [ -n "${BUILD_ENV}" ]; then
383 export ${BUILD_ENV};
384 fi
Simon Glass87c80462020-03-18 09:43:00 -0600385 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
Heinrich Schuchardt0c9fdd02020-07-14 00:40:19 +0200386 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
387 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
388 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
Heinrich Schuchardt0c9fdd02020-07-14 00:40:19 +0200389 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
390 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
Bin Meng0ae41062021-08-26 23:33:35 +0800391 # create sdcard / spi-nor images for sifive unleashed using genimage
392 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
393 mkdir -p root;
394 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
395 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
396 rm -rf tmp;
397 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
398 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
399 rm -rf tmp;
400 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
401 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
402 fi
Simon Glass13e1fa02022-01-21 10:23:01 -0700403 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
404 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
405 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
406 chmod a+x cbfstool;
407 ./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;
408 fi
Tom Rini17e41f22019-10-31 10:45:03 -0400409 virtualenv -p /usr/bin/python3 /tmp/venv
410 . /tmp/venv/bin/activate
411 pip install -r test/py/requirements.txt
Tom Rini528facb2019-11-01 13:59:14 -0400412 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
Bin Mengddaa6b12019-10-28 07:25:03 -0700413 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
Simon Glass2600f7e2020-03-18 09:42:56 -0600414 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
Heinrich Schuchardt2a3ec0a2020-07-10 22:04:40 +0200415 ./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 Mengddaa6b12019-10-28 07:25:03 -0700416 # the below corresponds to .gitlab-ci.yml "after_script"
Tom Rini6d4656b2020-02-07 11:45:55 -0500417 rm -rf /tmp/uboot-test-hooks /tmp/venv
Bin Mengddaa6b12019-10-28 07:25:03 -0700418 EOF
419 cat test.sh
420 # make current directory writeable to uboot user inside the container
421 # as sandbox testing need create files like spi flash images, etc.
422 # (TODO: clean up this in the future)
423 chmod 777 .
Alper Nebi Yasakc6d25c12021-06-21 21:51:56 +0300424 # Filesystem tests need extra docker args to run
425 set --
426 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
427 # mount -o loop needs the loop devices
428 if modprobe loop; then
429 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
430 set -- "$@" --device $d:$d
431 done
432 fi
433 # Needed for mount syscall (for guestmount as well)
434 set -- "$@" --cap-add SYS_ADMIN
435 # Default apparmor profile denies mounts
436 set -- "$@" --security-opt apparmor=unconfined
437 fi
Alper Nebi Yasak6fb91f62021-06-21 21:51:55 +0300438 # Some tests using libguestfs-tools need the fuse device to run
Alper Nebi Yasakc6d25c12021-06-21 21:51:56 +0300439 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
Bin Mengddaa6b12019-10-28 07:25:03 -0700440
Tom Rini4c268a62022-01-11 19:14:28 -0500441- stage: world_build
442 jobs:
Bin Mengddaa6b12019-10-28 07:25:03 -0700443 - job: build_the_world
444 displayName: 'Build the World'
445 pool:
446 vmImage: $(ubuntu_vm)
447 strategy:
448 # Use almost the same target division in .travis.yml, only merged
Tom Rini53320122022-04-06 09:21:25 -0400449 # 3 small build jobs (arc/microblaze/xtensa) into one.
Bin Mengddaa6b12019-10-28 07:25:03 -0700450 matrix:
Tom Rini53320122022-04-06 09:21:25 -0400451 arc_microblaze_xtensa:
452 BUILDMAN: "arc microblaze xtensa"
Tom Rini925fc6c2022-12-07 09:16:18 -0500453 amlogic:
454 BUILDMAN: "amlogic"
Bin Mengddaa6b12019-10-28 07:25:03 -0700455 arm11_arm7_arm920t_arm946es:
456 BUILDMAN: "arm11 arm7 arm920t arm946es"
457 arm926ejs:
Tom Rinif5376452021-07-08 07:50:08 -0400458 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
Bin Mengddaa6b12019-10-28 07:25:03 -0700459 at91_non_armv7:
460 BUILDMAN: "at91 -x armv7"
461 at91_non_arm926ejs:
462 BUILDMAN: "at91 -x arm926ejs"
463 boundary_engicam_toradex:
464 BUILDMAN: "boundary engicam toradex"
465 arm_bcm:
466 BUILDMAN: "bcm -x mips"
467 nxp_arm32:
Heiko Schocher56b9b312019-11-22 11:17:29 +0100468 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
469 nxp_ls101x:
470 BUILDMAN: "freescale&ls101"
471 nxp_ls102x:
472 BUILDMAN: "freescale&ls102"
473 nxp_ls104x:
474 BUILDMAN: "freescale&ls104"
475 nxp_ls108x:
476 BUILDMAN: "freescale&ls108"
477 nxp_ls20xx:
478 BUILDMAN: "freescale&ls20"
479 nxp_lx216x:
480 BUILDMAN: "freescale&lx216"
Bin Mengddaa6b12019-10-28 07:25:03 -0700481 imx6:
482 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
483 imx:
Tom Rini925fc6c2022-12-07 09:16:18 -0500484 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
485 imx8_imx9:
486 BUILDMAN: "imx8 imx9"
Bin Mengddaa6b12019-10-28 07:25:03 -0700487 keystone2_keystone3:
488 BUILDMAN: "k2 k3"
Andrew Scull220d7102022-05-30 10:00:07 +0000489 sandbox_asan:
490 BUILDMAN: "sandbox"
491 OVERRIDE: "-a ASAN"
492 sandbox_clang_asan:
493 BUILDMAN: "sandbox"
Tom Rini77d48f12022-11-22 12:31:58 -0500494 OVERRIDE: "-O clang-14 -a ASAN"
Bin Mengddaa6b12019-10-28 07:25:03 -0700495 samsung_socfpga:
496 BUILDMAN: "samsung socfpga"
Bin Mengddaa6b12019-10-28 07:25:03 -0700497 sun4i:
498 BUILDMAN: "sun4i"
499 sun5i:
500 BUILDMAN: "sun5i"
501 sun6i:
502 BUILDMAN: "sun6i"
503 sun7i:
504 BUILDMAN: "sun7i"
505 sun8i_32bit:
506 BUILDMAN: "sun8i&armv7"
507 sun8i_64bit:
508 BUILDMAN: "sun8i&aarch64"
509 sun9i:
510 BUILDMAN: "sun9i"
511 sun50i:
512 BUILDMAN: "sun50i"
513 arm_catch_all:
Tom Rinif04bde52021-02-15 10:52:19 -0500514 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 Mengddaa6b12019-10-28 07:25:03 -0700515 sandbox_x86:
516 BUILDMAN: "sandbox x86"
517 technexion:
518 BUILDMAN: "technexion"
519 kirkwood:
520 BUILDMAN: "kirkwood"
521 mvebu:
522 BUILDMAN: "mvebu"
523 m68k:
524 BUILDMAN: "m68k"
525 mips:
526 BUILDMAN: "mips"
Tom Rinifdb677d2022-08-09 21:08:52 -0400527 powerpc:
528 BUILDMAN: "powerpc"
Bin Mengddaa6b12019-10-28 07:25:03 -0700529 siemens:
530 BUILDMAN: "siemens"
531 tegra:
532 BUILDMAN: "tegra -x toradex"
533 am33xx_no_siemens:
534 BUILDMAN: "am33xx -x siemens"
535 omap:
536 BUILDMAN: "omap"
537 uniphier:
538 BUILDMAN: "uniphier"
539 aarch64_catch_all:
Tom Rini925fc6c2022-12-07 09:16:18 -0500540 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
Tom Rini87abed82022-12-27 11:48:08 -0500541 rockchip_32bit:
542 BUILDMAN: "rk -x aarch64"
543 rockchip_64bit:
544 BUILDMAN: "rk&aarch64"
Tom Rinif04bde52021-02-15 10:52:19 -0500545 renesas:
546 BUILDMAN: "renesas"
Bin Mengddaa6b12019-10-28 07:25:03 -0700547 zynq:
548 BUILDMAN: "zynq&armv7"
549 zynqmp_versal:
550 BUILDMAN: "versal|zynqmp&aarch64"
551 riscv:
552 BUILDMAN: "riscv"
553 steps:
554 - script: |
555 cat << EOF > build.sh
556 set -ex
557 cd ${WORK_DIR}
558 # make environment variables available as tests are running inside a container
559 export BUILDMAN="${BUILDMAN}"
Tom Rinie0f979b2022-11-21 12:52:40 -0500560 git config --global --add safe.directory ${WORK_DIR}
Bin Mengddaa6b12019-10-28 07:25:03 -0700561 EOF
562 cat << "EOF" >> build.sh
563 if [[ "${BUILDMAN}" != "" ]]; then
564 ret=0;
Tom Rini93ebd462022-11-09 19:14:53 -0700565 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
Simon Glassda499352020-03-18 09:42:57 -0600566 if [[ $ret -ne 0 ]]; then
Simon Glassad8eaed2020-03-18 09:42:53 -0600567 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
Bin Mengddaa6b12019-10-28 07:25:03 -0700568 exit $ret;
569 fi;
570 fi
571 EOF
572 cat build.sh
573 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh