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