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