Merge https://source.denx.de/u-boot/custodians/u-boot-marvell
[platform/kernel/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 at:
4 # https://source.denx.de/u-boot/gitlab-ci-runner
5 image: trini/u-boot-gitlab-ci-runner:focal-20220105-10Jan2022
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 clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
18     - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
19     - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
20     - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
21     - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22     - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
23         wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
24         export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
25       fi
26     - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
27         wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
28         export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
29       fi
30
31   after_script:
32     - rm -rf /tmp/uboot-test-hooks /tmp/venv
33   script:
34     # If we've been asked to use clang only do one configuration.
35     - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
36     - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
37         --board ${TEST_PY_BD} ${OVERRIDE}
38     - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
39     - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
40     - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
41     - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
42     - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
43     # create sdcard / spi-nor images for sifive unleashed using genimage
44     - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
45         mkdir -p root;
46         cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
47         cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
48         rm -rf tmp;
49         genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
50         cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
51         rm -rf tmp;
52         genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
53         cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
54       fi
55     - virtualenv -p /usr/bin/python3 /tmp/venv
56     - . /tmp/venv/bin/activate
57     - pip install -r test/py/requirements.txt
58     # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
59     - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
60       export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
61       ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
62         ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
63         --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
64
65 build all 32bit ARM platforms:
66   stage: world build
67   script:
68     - ret=0;
69       ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
70       if [[ $ret -ne 0 ]]; then
71         ./tools/buildman/buildman -o /tmp -seP;
72         exit $ret;
73       fi;
74
75 build all 64bit ARM platforms:
76   stage: world build
77   script:
78     - virtualenv -p /usr/bin/python3 /tmp/venv
79     - . /tmp/venv/bin/activate
80     - pip install pyelftools
81     - ret=0;
82       ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
83       if [[ $ret -ne 0 ]]; then
84         ./tools/buildman/buildman -o /tmp -seP;
85         exit $ret;
86       fi;
87
88 build all PowerPC platforms:
89   stage: world build
90   script:
91     - ret=0;
92       ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
93       if [[ $ret -ne 0 ]]; then
94         ./tools/buildman/buildman -o /tmp -seP;
95         exit $ret;
96       fi;
97
98 build all other platforms:
99   stage: world build
100   script:
101     - ret=0;
102       ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
103       if [[ $ret -ne 0 ]]; then
104         ./tools/buildman/buildman -o /tmp -seP;
105         exit $ret;
106       fi;
107
108 check for migrated symbols in board header:
109   stage: testsuites
110   script:
111     - KSYMLST=`mktemp`;
112       KUSEDLST=`mktemp`;
113       cat `find . -name "Kconfig*"` |
114          sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
115          -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
116          | sort -u > $KSYMLST;
117       for CFG in `find include/configs -name "*.h"`; do
118          grep '#define[[:blank:]]CONFIG_' $CFG |
119             sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' |
120             sort -u > ${KUSEDLST} || true;
121          NUM=`comm -12 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} |
122             cut -d , -f 3`;
123          if [[ $NUM -ne 0 ]]; then
124             echo "Unmigrated symbols found in $CFG";
125             exit 1;
126          fi;
127       done
128
129 # QA jobs for code analytics
130 # static code analysis with cppcheck (we can add --enable=all later)
131 cppcheck:
132   stage: testsuites
133   script:
134     - cppcheck -j$(nproc) --force --quiet --inline-suppr .
135
136 # search for TODO within source tree
137 grep TODO/FIXME/HACK:
138   stage: testsuites
139   script:
140     - grep -r TODO .
141     - grep -r FIXME .
142     # search for HACK within source tree and ignore HACKKIT board
143     - grep -r HACK . | grep -v HACKKIT
144
145 # build HTML documentation
146 htmldocs:
147   stage: testsuites
148   script:
149     - virtualenv -p /usr/bin/python3 /tmp/venvhtml
150     - . /tmp/venvhtml/bin/activate
151     - pip install -r doc/sphinx/requirements.txt
152     - make htmldocs
153
154 # some statistics about the code base
155 sloccount:
156   stage: testsuites
157   script:
158     - sloccount .
159
160 # ensure all configs have MAINTAINERS entries
161 Check for configs without MAINTAINERS entry:
162   stage: testsuites
163   script:
164     - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
165
166 # Ensure host tools build
167 Build tools-only:
168   stage: testsuites
169   script:
170     - make tools-only_config tools-only -j$(nproc)
171
172 # Ensure env tools build
173 Build envtools:
174   stage: testsuites
175   script:
176     - make tools-only_config envtools -j$(nproc)
177
178 Run binman, buildman, dtoc, Kconfig and patman testsuites:
179   stage: testsuites
180   script:
181     - git config --global user.name "GitLab CI Runner";
182       git config --global user.email trini@konsulko.com;
183       export USER=gitlab;
184       virtualenv -p /usr/bin/python3 /tmp/venv;
185       . /tmp/venv/bin/activate;
186       pip install -r test/py/requirements.txt;
187       export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
188       export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
189       export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
190       ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
191         --board sandbox_spl;
192       ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
193       ./tools/buildman/buildman -t;
194       ./tools/dtoc/dtoc -t;
195       ./tools/patman/patman test;
196       make testconfig
197
198 Run tests for Nokia RX-51 (aka N900):
199   stage: testsuites
200   script:
201     - export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH;
202       test/nokia_rx51_test.sh
203
204 # Test sandbox with test.py
205 sandbox test.py:
206   variables:
207     TEST_PY_BD: "sandbox"
208   <<: *buildman_and_testpy_dfn
209
210 sandbox with clang test.py:
211   variables:
212     TEST_PY_BD: "sandbox"
213     OVERRIDE: "-O clang-13"
214   <<: *buildman_and_testpy_dfn
215
216 sandbox_spl test.py:
217   variables:
218     TEST_PY_BD: "sandbox_spl"
219     TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
220   <<: *buildman_and_testpy_dfn
221
222 sandbox_noinst_test.py:
223   variables:
224     TEST_PY_BD: "sandbox_noinst"
225     TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
226   <<: *buildman_and_testpy_dfn
227
228 evb-ast2500 test.py:
229   variables:
230     TEST_PY_BD: "evb-ast2500"
231     TEST_PY_ID: "--id qemu"
232   <<: *buildman_and_testpy_dfn
233
234 sandbox_flattree test.py:
235   variables:
236     TEST_PY_BD: "sandbox_flattree"
237   <<: *buildman_and_testpy_dfn
238
239 vexpress_ca9x4 test.py:
240   variables:
241     TEST_PY_BD: "vexpress_ca9x4"
242     TEST_PY_ID: "--id qemu"
243   <<: *buildman_and_testpy_dfn
244
245 integratorcp_cm926ejs test.py:
246   variables:
247     TEST_PY_BD: "integratorcp_cm926ejs"
248     TEST_PY_TEST_SPEC: "not sleep"
249     TEST_PY_ID: "--id qemu"
250   <<: *buildman_and_testpy_dfn
251
252 qemu_arm test.py:
253   variables:
254     TEST_PY_BD: "qemu_arm"
255     TEST_PY_TEST_SPEC: "not sleep"
256   <<: *buildman_and_testpy_dfn
257
258 qemu_arm64 test.py:
259   variables:
260     TEST_PY_BD: "qemu_arm64"
261     TEST_PY_TEST_SPEC: "not sleep"
262   <<: *buildman_and_testpy_dfn
263
264 qemu_malta test.py:
265   variables:
266     TEST_PY_BD: "malta"
267     TEST_PY_TEST_SPEC: "not sleep and not efi"
268     TEST_PY_ID: "--id qemu"
269   <<: *buildman_and_testpy_dfn
270
271 qemu_maltael test.py:
272   variables:
273     TEST_PY_BD: "maltael"
274     TEST_PY_TEST_SPEC: "not sleep and not efi"
275     TEST_PY_ID: "--id qemu"
276   <<: *buildman_and_testpy_dfn
277
278 qemu_malta64 test.py:
279   variables:
280     TEST_PY_BD: "malta64"
281     TEST_PY_TEST_SPEC: "not sleep and not efi"
282     TEST_PY_ID: "--id qemu"
283   <<: *buildman_and_testpy_dfn
284
285 qemu_malta64el test.py:
286   variables:
287     TEST_PY_BD: "malta64el"
288     TEST_PY_TEST_SPEC: "not sleep and not efi"
289     TEST_PY_ID: "--id qemu"
290   <<: *buildman_and_testpy_dfn
291
292 qemu-ppce500 test.py:
293   variables:
294     TEST_PY_BD: "qemu-ppce500"
295     TEST_PY_TEST_SPEC: "not sleep"
296   <<: *buildman_and_testpy_dfn
297
298 qemu-riscv32 test.py:
299   variables:
300     TEST_PY_BD: "qemu-riscv32"
301     TEST_PY_TEST_SPEC: "not sleep"
302   <<: *buildman_and_testpy_dfn
303
304 qemu-riscv64 test.py:
305   variables:
306     TEST_PY_BD: "qemu-riscv64"
307     TEST_PY_TEST_SPEC: "not sleep"
308   <<: *buildman_and_testpy_dfn
309
310 qemu-riscv32_spl test.py:
311   variables:
312     TEST_PY_BD: "qemu-riscv32_spl"
313     TEST_PY_TEST_SPEC: "not sleep"
314   <<: *buildman_and_testpy_dfn
315
316 qemu-riscv64_spl test.py:
317   variables:
318     TEST_PY_BD: "qemu-riscv64_spl"
319     TEST_PY_TEST_SPEC: "not sleep"
320   <<: *buildman_and_testpy_dfn
321
322 qemu-x86 test.py:
323   variables:
324     TEST_PY_BD: "qemu-x86"
325     TEST_PY_TEST_SPEC: "not sleep"
326   <<: *buildman_and_testpy_dfn
327
328 qemu-x86_64 test.py:
329   variables:
330     TEST_PY_BD: "qemu-x86_64"
331     TEST_PY_TEST_SPEC: "not sleep"
332   <<: *buildman_and_testpy_dfn
333
334 r2dplus_i82557c test.py:
335   variables:
336     TEST_PY_BD: "r2dplus"
337     TEST_PY_ID: "--id i82557c_qemu"
338   <<: *buildman_and_testpy_dfn
339
340 r2dplus_pcnet test.py:
341   variables:
342     TEST_PY_BD: "r2dplus"
343     TEST_PY_ID: "--id pcnet_qemu"
344   <<: *buildman_and_testpy_dfn
345
346 r2dplus_rtl8139 test.py:
347   variables:
348     TEST_PY_BD: "r2dplus"
349     TEST_PY_ID: "--id rtl8139_qemu"
350   <<: *buildman_and_testpy_dfn
351
352 r2dplus_tulip test.py:
353   variables:
354     TEST_PY_BD: "r2dplus"
355     TEST_PY_ID: "--id tulip_qemu"
356   <<: *buildman_and_testpy_dfn
357
358 sifive_unleashed_sdcard test.py:
359   variables:
360     TEST_PY_BD: "sifive_unleashed"
361     TEST_PY_ID: "--id sdcard_qemu"
362   <<: *buildman_and_testpy_dfn
363
364 sifive_unleashed_spi-nor test.py:
365   variables:
366     TEST_PY_BD: "sifive_unleashed"
367     TEST_PY_ID: "--id spi-nor_qemu"
368   <<: *buildman_and_testpy_dfn
369
370 xilinx_zynq_virt test.py:
371   variables:
372     TEST_PY_BD: "xilinx_zynq_virt"
373     TEST_PY_TEST_SPEC: "not sleep"
374     TEST_PY_ID: "--id qemu"
375   <<: *buildman_and_testpy_dfn
376
377 xilinx_versal_virt test.py:
378   variables:
379     TEST_PY_BD: "xilinx_versal_virt"
380     TEST_PY_TEST_SPEC: "not sleep"
381     TEST_PY_ID: "--id qemu"
382   <<: *buildman_and_testpy_dfn
383
384 xtfpga test.py:
385   variables:
386     TEST_PY_BD: "xtfpga"
387     TEST_PY_TEST_SPEC: "not sleep"
388     TEST_PY_ID: "--id qemu"
389   <<: *buildman_and_testpy_dfn