configs: visionfive2: Enable CONFIG_OF_BOARD_SETUP
[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=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&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       pip install -r tools/buildman/requirements.txt;
102       ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?;
103       if [[ $ret -ne 0 ]]; then
104         ./tools/buildman/buildman -o /tmp -seP;
105         exit $ret;
106       fi;
107
108 build all 64bit ARM platforms:
109   stage: world build
110   script:
111     - virtualenv -p /usr/bin/python3 /tmp/venv
112     - . /tmp/venv/bin/activate
113     - ret=0;
114       git config --global --add safe.directory "${CI_PROJECT_DIR}";
115       pip install -r tools/buildman/requirements.txt;
116       ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?;
117       if [[ $ret -ne 0 ]]; then
118         ./tools/buildman/buildman -o /tmp -seP;
119         exit $ret;
120       fi;
121
122 build all PowerPC platforms:
123   stage: world build
124   script:
125     - ret=0;
126       git config --global --add safe.directory "${CI_PROJECT_DIR}";
127       ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
128       if [[ $ret -ne 0 ]]; then
129         ./tools/buildman/buildman -o /tmp -seP;
130         exit $ret;
131       fi;
132
133 build all other platforms:
134   stage: world build
135   script:
136     - ret=0;
137       git config --global --add safe.directory "${CI_PROJECT_DIR}";
138       ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?;
139       if [[ $ret -ne 0 ]]; then
140         ./tools/buildman/buildman -o /tmp -seP;
141         exit $ret;
142       fi;
143
144 check for new CONFIG symbols outside Kconfig:
145   stage: testsuites
146   script:
147     - git config --global --add safe.directory "${CI_PROJECT_DIR}"
148     # If grep succeeds and finds a match the test fails as we should
149     # have no matches.
150     - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
151         :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
152         :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
153
154 # QA jobs for code analytics
155 # static code analysis with cppcheck (we can add --enable=all later)
156 cppcheck:
157   stage: testsuites
158   script:
159     - cppcheck -j$(nproc) --force --quiet --inline-suppr .
160
161 # search for TODO within source tree
162 grep TODO/FIXME/HACK:
163   stage: testsuites
164   script:
165     - grep -r TODO .
166     - grep -r FIXME .
167     # search for HACK within source tree and ignore HACKKIT board
168     - grep -r HACK . | grep -v HACKKIT
169
170 # build documentation
171 docs:
172   stage: testsuites
173   script:
174     - virtualenv -p /usr/bin/python3 /tmp/venvhtml
175     - . /tmp/venvhtml/bin/activate
176     - pip install -r doc/sphinx/requirements.txt
177     - make htmldocs KDOC_WERROR=1
178     - make infodocs
179
180 # some statistics about the code base
181 sloccount:
182   stage: testsuites
183   script:
184     - sloccount .
185
186 # ensure all configs have MAINTAINERS entries
187 Check for configs without MAINTAINERS entry:
188   stage: testsuites
189   script:
190     - ./tools/buildman/buildman --maintainer-check || exit 0
191
192 # Ensure host tools build
193 Build tools-only:
194   stage: testsuites
195   script:
196     - make tools-only_config tools-only -j$(nproc)
197
198 # Ensure env tools build
199 Build envtools:
200   stage: testsuites
201   script:
202     - make tools-only_config envtools -j$(nproc)
203
204 Run binman, buildman, dtoc, Kconfig and patman testsuites:
205   stage: testsuites
206   script:
207     - git config --global user.name "GitLab CI Runner";
208       git config --global user.email trini@konsulko.com;
209       git config --global --add safe.directory "${CI_PROJECT_DIR}";
210       export USER=gitlab;
211       virtualenv -p /usr/bin/python3 /tmp/venv;
212       . /tmp/venv/bin/activate;
213       pip install -r test/py/requirements.txt;
214       pip install -r tools/buildman/requirements.txt;
215       export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
216       export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
217       export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
218       set +e;
219       ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
220         --board sandbox_spl;
221       set -e;
222       ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
223       ./tools/buildman/buildman -t;
224       ./tools/dtoc/dtoc -t;
225       ./tools/patman/patman test;
226       make testconfig
227
228 # Check for any pylint regressions
229 Run pylint:
230   stage: testsuites
231   script:
232     - git config --global --add safe.directory "${CI_PROJECT_DIR}"
233     - pip install -r test/py/requirements.txt
234     - pip install -r tools/buildman/requirements.txt
235     - pip install asteval pylint==2.12.2 pyopenssl
236     - export PATH=${PATH}:~/.local/bin
237     - echo "[MASTER]" >> .pylintrc
238     - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
239     - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
240     - set +e
241     - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
242         --board sandbox_spl
243     - set -e
244     - pylint --version
245     - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
246     - make pylint_err
247
248 # Check for pre-schema driver model tags
249 Check for pre-schema tags:
250   stage: testsuites
251   script:
252     - git config --global --add safe.directory "${CI_PROJECT_DIR}";
253     # If grep succeeds and finds a match the test fails as we should
254     # have no matches.
255     - git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
256
257 # Check we can package the Python tools
258 Check packing of Python tools:
259   stage: testsuites
260   script:
261     - make pip
262
263 # Test sandbox with test.py
264 sandbox test.py:
265   variables:
266     TEST_PY_BD: "sandbox"
267   <<: *buildman_and_testpy_dfn
268
269 sandbox with clang test.py:
270   variables:
271     TEST_PY_BD: "sandbox"
272     OVERRIDE: "-O clang-16"
273   <<: *buildman_and_testpy_dfn
274
275 sandbox without LTO test.py:
276   variables:
277     TEST_PY_BD: "sandbox"
278     BUILD_ENV: "NO_LTO=1"
279   <<: *buildman_and_testpy_dfn
280
281 sandbox_spl test.py:
282   variables:
283     TEST_PY_BD: "sandbox_spl"
284     TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
285   <<: *buildman_and_testpy_dfn
286
287 sandbox_noinst_test.py:
288   variables:
289     TEST_PY_BD: "sandbox_noinst"
290     TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
291   <<: *buildman_and_testpy_dfn
292
293 sandbox_vpl test.py:
294   variables:
295     TEST_PY_BD: "sandbox_vpl"
296     TEST_PY_TEST_SPEC: "vpl or test_spl"
297   <<: *buildman_and_testpy_dfn
298
299 # Enable tracing and disable LTO, to ensure functions are not elided
300 sandbox trace_test.py:
301   variables:
302     TEST_PY_BD: "sandbox"
303     BUILD_ENV: "FTRACE=1 NO_LTO=1"
304     TEST_PY_TEST_SPEC: "trace"
305     OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
306   <<: *buildman_and_testpy_dfn
307
308 evb-ast2500 test.py:
309   variables:
310     TEST_PY_BD: "evb-ast2500"
311     TEST_PY_ID: "--id qemu"
312   <<: *buildman_and_testpy_dfn
313
314 evb-ast2600 test.py:
315   variables:
316     TEST_PY_BD: "evb-ast2600"
317     TEST_PY_ID: "--id qemu"
318   <<: *buildman_and_testpy_dfn
319
320 sandbox_flattree test.py:
321   variables:
322     TEST_PY_BD: "sandbox_flattree"
323   <<: *buildman_and_testpy_dfn
324
325 vexpress_ca9x4 test.py:
326   variables:
327     TEST_PY_BD: "vexpress_ca9x4"
328     TEST_PY_ID: "--id qemu"
329   <<: *buildman_and_testpy_dfn
330
331 integratorcp_cm926ejs test.py:
332   variables:
333     TEST_PY_BD: "integratorcp_cm926ejs"
334     TEST_PY_TEST_SPEC: "not sleep"
335     TEST_PY_ID: "--id qemu"
336   <<: *buildman_and_testpy_dfn
337
338 qemu_arm test.py:
339   variables:
340     TEST_PY_BD: "qemu_arm"
341     TEST_PY_TEST_SPEC: "not sleep"
342   <<: *buildman_and_testpy_dfn
343
344 qemu_arm64 test.py:
345   variables:
346     TEST_PY_BD: "qemu_arm64"
347     TEST_PY_TEST_SPEC: "not sleep"
348   <<: *buildman_and_testpy_dfn
349
350 qemu_m68k test.py:
351   variables:
352     TEST_PY_BD: "M5208EVBE"
353     TEST_PY_ID: "--id qemu"
354     TEST_PY_TEST_SPEC: "not sleep and not efi"
355     OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
356   <<: *buildman_and_testpy_dfn
357
358 qemu_malta test.py:
359   variables:
360     TEST_PY_BD: "malta"
361     TEST_PY_TEST_SPEC: "not sleep and not efi"
362     TEST_PY_ID: "--id qemu"
363   <<: *buildman_and_testpy_dfn
364
365 qemu_maltael test.py:
366   variables:
367     TEST_PY_BD: "maltael"
368     TEST_PY_TEST_SPEC: "not sleep and not efi"
369     TEST_PY_ID: "--id qemu"
370   <<: *buildman_and_testpy_dfn
371
372 qemu_malta64 test.py:
373   variables:
374     TEST_PY_BD: "malta64"
375     TEST_PY_TEST_SPEC: "not sleep and not efi"
376     TEST_PY_ID: "--id qemu"
377   <<: *buildman_and_testpy_dfn
378
379 qemu_malta64el test.py:
380   variables:
381     TEST_PY_BD: "malta64el"
382     TEST_PY_TEST_SPEC: "not sleep and not efi"
383     TEST_PY_ID: "--id qemu"
384   <<: *buildman_and_testpy_dfn
385
386 qemu-ppce500 test.py:
387   variables:
388     TEST_PY_BD: "qemu-ppce500"
389     TEST_PY_TEST_SPEC: "not sleep"
390   <<: *buildman_and_testpy_dfn
391
392 qemu-riscv32 test.py:
393   variables:
394     TEST_PY_BD: "qemu-riscv32"
395     TEST_PY_TEST_SPEC: "not sleep"
396   <<: *buildman_and_testpy_dfn
397
398 qemu-riscv64 test.py:
399   variables:
400     TEST_PY_BD: "qemu-riscv64"
401     TEST_PY_TEST_SPEC: "not sleep"
402   <<: *buildman_and_testpy_dfn
403
404 qemu-riscv32_spl test.py:
405   variables:
406     TEST_PY_BD: "qemu-riscv32_spl"
407     TEST_PY_TEST_SPEC: "not sleep"
408   <<: *buildman_and_testpy_dfn
409
410 qemu-riscv64_spl test.py:
411   variables:
412     TEST_PY_BD: "qemu-riscv64_spl"
413     TEST_PY_TEST_SPEC: "not sleep"
414   <<: *buildman_and_testpy_dfn
415
416 qemu-x86 test.py:
417   variables:
418     TEST_PY_BD: "qemu-x86"
419     TEST_PY_TEST_SPEC: "not sleep"
420   <<: *buildman_and_testpy_dfn
421
422 qemu-x86_64 test.py:
423   variables:
424     TEST_PY_BD: "qemu-x86_64"
425     TEST_PY_TEST_SPEC: "not sleep"
426   <<: *buildman_and_testpy_dfn
427
428 r2dplus_i82557c test.py:
429   variables:
430     TEST_PY_BD: "r2dplus"
431     TEST_PY_ID: "--id i82557c_qemu"
432   <<: *buildman_and_testpy_dfn
433
434 r2dplus_pcnet test.py:
435   variables:
436     TEST_PY_BD: "r2dplus"
437     TEST_PY_ID: "--id pcnet_qemu"
438   <<: *buildman_and_testpy_dfn
439
440 r2dplus_rtl8139 test.py:
441   variables:
442     TEST_PY_BD: "r2dplus"
443     TEST_PY_ID: "--id rtl8139_qemu"
444   <<: *buildman_and_testpy_dfn
445
446 r2dplus_tulip test.py:
447   variables:
448     TEST_PY_BD: "r2dplus"
449     TEST_PY_ID: "--id tulip_qemu"
450   <<: *buildman_and_testpy_dfn
451
452 sifive_unleashed_sdcard test.py:
453   variables:
454     TEST_PY_BD: "sifive_unleashed"
455     TEST_PY_ID: "--id sdcard_qemu"
456   <<: *buildman_and_testpy_dfn
457
458 sifive_unleashed_spi-nor test.py:
459   variables:
460     TEST_PY_BD: "sifive_unleashed"
461     TEST_PY_ID: "--id spi-nor_qemu"
462   <<: *buildman_and_testpy_dfn
463
464 xilinx_zynq_virt test.py:
465   variables:
466     TEST_PY_BD: "xilinx_zynq_virt"
467     TEST_PY_TEST_SPEC: "not sleep"
468     TEST_PY_ID: "--id qemu"
469   <<: *buildman_and_testpy_dfn
470
471 xilinx_versal_virt test.py:
472   variables:
473     TEST_PY_BD: "xilinx_versal_virt"
474     TEST_PY_TEST_SPEC: "not sleep"
475     TEST_PY_ID: "--id qemu"
476   <<: *buildman_and_testpy_dfn
477
478 xtfpga test.py:
479   variables:
480     TEST_PY_BD: "xtfpga"
481     TEST_PY_TEST_SPEC: "not sleep"
482     TEST_PY_ID: "--id qemu"
483   <<: *buildman_and_testpy_dfn
484
485 coreboot test.py:
486   variables:
487     TEST_PY_BD: "coreboot"
488     TEST_PY_TEST_SPEC: "not sleep"
489     TEST_PY_ID: "--id qemu"
490   <<: *buildman_and_testpy_dfn