]> git.ipfire.org Git - thirdparty/u-boot.git/blob - .gitlab-ci.yml
ARM: meson: odroid-go-ultra: setup PMIC regulators are board init
[thirdparty/u-boot.git] / .gitlab-ci.yml
1 # SPDX-License-Identifier: GPL-2.0+
2
3 # Grab our configured image. The source for this is found
4 # in the u-boot tree at tools/docker/Dockerfile
5 image: trini/u-boot-gitlab-ci-runner:jammy-20230126-10Feb2023
6
7 # We run some tests in different order, to catch some failures quicker.
8 stages:
9 - testsuites
10 - test.py
11 - world build
12
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
14 stage: test.py
15 before_script:
16 # Clone uboot-test-hooks
17 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
18 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
19 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
20 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
21 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
23 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
24 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
25 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
26 fi
27 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
28 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
29 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
30 fi
31
32 after_script:
33 - rm -rf /tmp/uboot-test-hooks /tmp/venv
34 script:
35 # If we've been asked to use clang only do one configuration.
36 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
37 - echo BUILD_ENV ${BUILD_ENV}
38 - if [ -n "${BUILD_ENV}" ]; then
39 export ${BUILD_ENV};
40 fi
41 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
42 --board ${TEST_PY_BD} ${OVERRIDE}
43 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
44 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
45 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
46 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
47 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
48 # create sdcard / spi-nor images for sifive unleashed using genimage
49 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
50 mkdir -p root;
51 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
52 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
53 rm -rf tmp;
54 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
55 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
56 rm -rf tmp;
57 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
58 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
59 fi
60 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
61 wget -O -
62 "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |
63 xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
64 wget -O -
65 "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >
66 cbfstool;
67 chmod a+x cbfstool;
68 ./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;
69 fi
70 - virtualenv -p /usr/bin/python3 /tmp/venv
71 - . /tmp/venv/bin/activate
72 - pip install -r test/py/requirements.txt
73 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
74 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
75 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
76 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
77 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
78 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
79 # It seems that the files in /tmp go away, so copy out what we need
80 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
81 cp -v /tmp/coreboot/*.{html,css} .;
82 fi
83
84 build all 32bit ARM platforms:
85 stage: world build
86 script:
87 - ret=0;
88 git config --global --add safe.directory "${CI_PROJECT_DIR}";
89 ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?;
90 if [[ $ret -ne 0 ]]; then
91 ./tools/buildman/buildman -o /tmp -seP;
92 exit $ret;
93 fi;
94
95 build all 64bit ARM platforms:
96 stage: world build
97 script:
98 - virtualenv -p /usr/bin/python3 /tmp/venv
99 - . /tmp/venv/bin/activate
100 - ret=0;
101 git config --global --add safe.directory "${CI_PROJECT_DIR}";
102 ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?;
103 if [[ $ret -ne 0 ]]; then
104 ./tools/buildman/buildman -o /tmp -seP;
105 exit $ret;
106 fi;
107
108 build all PowerPC platforms:
109 stage: world build
110 script:
111 - ret=0;
112 git config --global --add safe.directory "${CI_PROJECT_DIR}";
113 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
114 if [[ $ret -ne 0 ]]; then
115 ./tools/buildman/buildman -o /tmp -seP;
116 exit $ret;
117 fi;
118
119 build all other platforms:
120 stage: world build
121 script:
122 - ret=0;
123 git config --global --add safe.directory "${CI_PROJECT_DIR}";
124 ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?;
125 if [[ $ret -ne 0 ]]; then
126 ./tools/buildman/buildman -o /tmp -seP;
127 exit $ret;
128 fi;
129
130 check for new CONFIG symbols outside Kconfig:
131 stage: testsuites
132 script:
133 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
134 # If grep succeeds and finds a match the test fails as we should
135 # have no matches.
136 - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
137 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
138 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
139
140 # QA jobs for code analytics
141 # static code analysis with cppcheck (we can add --enable=all later)
142 cppcheck:
143 stage: testsuites
144 script:
145 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
146
147 # search for TODO within source tree
148 grep TODO/FIXME/HACK:
149 stage: testsuites
150 script:
151 - grep -r TODO .
152 - grep -r FIXME .
153 # search for HACK within source tree and ignore HACKKIT board
154 - grep -r HACK . | grep -v HACKKIT
155
156 # build documentation
157 docs:
158 stage: testsuites
159 script:
160 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
161 - . /tmp/venvhtml/bin/activate
162 - pip install -r doc/sphinx/requirements.txt
163 - make htmldocs
164 - make infodocs
165
166 # some statistics about the code base
167 sloccount:
168 stage: testsuites
169 script:
170 - sloccount .
171
172 # ensure all configs have MAINTAINERS entries
173 Check for configs without MAINTAINERS entry:
174 stage: testsuites
175 script:
176 - ./tools/buildman/buildman -R
177
178 # Ensure host tools build
179 Build tools-only:
180 stage: testsuites
181 script:
182 - make tools-only_config tools-only -j$(nproc)
183
184 # Ensure env tools build
185 Build envtools:
186 stage: testsuites
187 script:
188 - make tools-only_config envtools -j$(nproc)
189
190 Run binman, buildman, dtoc, Kconfig and patman testsuites:
191 stage: testsuites
192 script:
193 - git config --global user.name "GitLab CI Runner";
194 git config --global user.email trini@konsulko.com;
195 git config --global --add safe.directory "${CI_PROJECT_DIR}";
196 export USER=gitlab;
197 virtualenv -p /usr/bin/python3 /tmp/venv;
198 . /tmp/venv/bin/activate;
199 pip install -r test/py/requirements.txt;
200 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
201 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
202 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
203 set +e;
204 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
205 --board sandbox_spl;
206 set -e;
207 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
208 ./tools/buildman/buildman -t;
209 ./tools/dtoc/dtoc -t;
210 ./tools/patman/patman test;
211 make testconfig
212
213 Run tests for Nokia RX-51 (aka N900):
214 stage: testsuites
215 script:
216 - export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH;
217 test/nokia_rx51_test.sh
218
219 # Check for any pylint regressions
220 Run pylint:
221 stage: testsuites
222 script:
223 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
224 - pip install -r test/py/requirements.txt
225 - pip install asteval pylint==2.12.2 pyopenssl
226 - export PATH=${PATH}:~/.local/bin
227 - echo "[MASTER]" >> .pylintrc
228 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
229 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
230 - set +e
231 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
232 --board sandbox_spl
233 - set -e
234 - pylint --version
235 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
236 - make pylint_err
237
238 # Test sandbox with test.py
239 sandbox test.py:
240 variables:
241 TEST_PY_BD: "sandbox"
242 <<: *buildman_and_testpy_dfn
243
244 sandbox with clang test.py:
245 variables:
246 TEST_PY_BD: "sandbox"
247 OVERRIDE: "-O clang-14"
248 <<: *buildman_and_testpy_dfn
249
250 sandbox without LTO test.py:
251 variables:
252 TEST_PY_BD: "sandbox"
253 BUILD_ENV: "NO_LTO=1"
254 <<: *buildman_and_testpy_dfn
255
256 sandbox_spl test.py:
257 variables:
258 TEST_PY_BD: "sandbox_spl"
259 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
260 <<: *buildman_and_testpy_dfn
261
262 sandbox_noinst_test.py:
263 variables:
264 TEST_PY_BD: "sandbox_noinst"
265 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
266 <<: *buildman_and_testpy_dfn
267
268 sandbox_vpl test.py:
269 variables:
270 TEST_PY_BD: "sandbox_vpl"
271 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
272 <<: *buildman_and_testpy_dfn
273
274 # Enable tracing and disable LTO, to ensure functions are not elided
275 sandbox trace_test.py:
276 variables:
277 TEST_PY_BD: "sandbox"
278 BUILD_ENV: "FTRACE=1 NO_LTO=1"
279 TEST_PY_TEST_SPEC: "trace"
280 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
281 <<: *buildman_and_testpy_dfn
282
283 evb-ast2500 test.py:
284 variables:
285 TEST_PY_BD: "evb-ast2500"
286 TEST_PY_ID: "--id qemu"
287 <<: *buildman_and_testpy_dfn
288
289 evb-ast2600 test.py:
290 variables:
291 TEST_PY_BD: "evb-ast2600"
292 TEST_PY_ID: "--id qemu"
293 <<: *buildman_and_testpy_dfn
294
295 sandbox_flattree test.py:
296 variables:
297 TEST_PY_BD: "sandbox_flattree"
298 <<: *buildman_and_testpy_dfn
299
300 vexpress_ca9x4 test.py:
301 variables:
302 TEST_PY_BD: "vexpress_ca9x4"
303 TEST_PY_ID: "--id qemu"
304 <<: *buildman_and_testpy_dfn
305
306 integratorcp_cm926ejs test.py:
307 variables:
308 TEST_PY_BD: "integratorcp_cm926ejs"
309 TEST_PY_TEST_SPEC: "not sleep"
310 TEST_PY_ID: "--id qemu"
311 <<: *buildman_and_testpy_dfn
312
313 qemu_arm test.py:
314 variables:
315 TEST_PY_BD: "qemu_arm"
316 TEST_PY_TEST_SPEC: "not sleep"
317 <<: *buildman_and_testpy_dfn
318
319 qemu_arm64 test.py:
320 variables:
321 TEST_PY_BD: "qemu_arm64"
322 TEST_PY_TEST_SPEC: "not sleep"
323 <<: *buildman_and_testpy_dfn
324
325 qemu_malta test.py:
326 variables:
327 TEST_PY_BD: "malta"
328 TEST_PY_TEST_SPEC: "not sleep and not efi"
329 TEST_PY_ID: "--id qemu"
330 <<: *buildman_and_testpy_dfn
331
332 qemu_maltael test.py:
333 variables:
334 TEST_PY_BD: "maltael"
335 TEST_PY_TEST_SPEC: "not sleep and not efi"
336 TEST_PY_ID: "--id qemu"
337 <<: *buildman_and_testpy_dfn
338
339 qemu_malta64 test.py:
340 variables:
341 TEST_PY_BD: "malta64"
342 TEST_PY_TEST_SPEC: "not sleep and not efi"
343 TEST_PY_ID: "--id qemu"
344 <<: *buildman_and_testpy_dfn
345
346 qemu_malta64el test.py:
347 variables:
348 TEST_PY_BD: "malta64el"
349 TEST_PY_TEST_SPEC: "not sleep and not efi"
350 TEST_PY_ID: "--id qemu"
351 <<: *buildman_and_testpy_dfn
352
353 qemu-ppce500 test.py:
354 variables:
355 TEST_PY_BD: "qemu-ppce500"
356 TEST_PY_TEST_SPEC: "not sleep"
357 <<: *buildman_and_testpy_dfn
358
359 qemu-riscv32 test.py:
360 variables:
361 TEST_PY_BD: "qemu-riscv32"
362 TEST_PY_TEST_SPEC: "not sleep"
363 <<: *buildman_and_testpy_dfn
364
365 qemu-riscv64 test.py:
366 variables:
367 TEST_PY_BD: "qemu-riscv64"
368 TEST_PY_TEST_SPEC: "not sleep"
369 <<: *buildman_and_testpy_dfn
370
371 qemu-riscv32_spl test.py:
372 variables:
373 TEST_PY_BD: "qemu-riscv32_spl"
374 TEST_PY_TEST_SPEC: "not sleep"
375 <<: *buildman_and_testpy_dfn
376
377 qemu-riscv64_spl test.py:
378 variables:
379 TEST_PY_BD: "qemu-riscv64_spl"
380 TEST_PY_TEST_SPEC: "not sleep"
381 <<: *buildman_and_testpy_dfn
382
383 qemu-x86 test.py:
384 variables:
385 TEST_PY_BD: "qemu-x86"
386 TEST_PY_TEST_SPEC: "not sleep"
387 <<: *buildman_and_testpy_dfn
388
389 qemu-x86_64 test.py:
390 variables:
391 TEST_PY_BD: "qemu-x86_64"
392 TEST_PY_TEST_SPEC: "not sleep"
393 <<: *buildman_and_testpy_dfn
394
395 r2dplus_i82557c test.py:
396 variables:
397 TEST_PY_BD: "r2dplus"
398 TEST_PY_ID: "--id i82557c_qemu"
399 <<: *buildman_and_testpy_dfn
400
401 r2dplus_pcnet test.py:
402 variables:
403 TEST_PY_BD: "r2dplus"
404 TEST_PY_ID: "--id pcnet_qemu"
405 <<: *buildman_and_testpy_dfn
406
407 r2dplus_rtl8139 test.py:
408 variables:
409 TEST_PY_BD: "r2dplus"
410 TEST_PY_ID: "--id rtl8139_qemu"
411 <<: *buildman_and_testpy_dfn
412
413 r2dplus_tulip test.py:
414 variables:
415 TEST_PY_BD: "r2dplus"
416 TEST_PY_ID: "--id tulip_qemu"
417 <<: *buildman_and_testpy_dfn
418
419 sifive_unleashed_sdcard test.py:
420 variables:
421 TEST_PY_BD: "sifive_unleashed"
422 TEST_PY_ID: "--id sdcard_qemu"
423 <<: *buildman_and_testpy_dfn
424
425 sifive_unleashed_spi-nor test.py:
426 variables:
427 TEST_PY_BD: "sifive_unleashed"
428 TEST_PY_ID: "--id spi-nor_qemu"
429 <<: *buildman_and_testpy_dfn
430
431 xilinx_zynq_virt test.py:
432 variables:
433 TEST_PY_BD: "xilinx_zynq_virt"
434 TEST_PY_TEST_SPEC: "not sleep"
435 TEST_PY_ID: "--id qemu"
436 <<: *buildman_and_testpy_dfn
437
438 xilinx_versal_virt test.py:
439 variables:
440 TEST_PY_BD: "xilinx_versal_virt"
441 TEST_PY_TEST_SPEC: "not sleep"
442 TEST_PY_ID: "--id qemu"
443 <<: *buildman_and_testpy_dfn
444
445 xtfpga test.py:
446 variables:
447 TEST_PY_BD: "xtfpga"
448 TEST_PY_TEST_SPEC: "not sleep"
449 TEST_PY_ID: "--id qemu"
450 <<: *buildman_and_testpy_dfn
451
452 coreboot test.py:
453 variables:
454 TEST_PY_BD: "coreboot"
455 TEST_PY_TEST_SPEC: "not sleep"
456 TEST_PY_ID: "--id qemu"
457 artifacts:
458 paths:
459 - "*.html"
460 - "*.css"
461 expire_in: 1 week
462 <<: *buildman_and_testpy_dfn