1 # Configuration for Gitlab-CI.
2 # Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
3 # The .gitlab-ci.yml file is generated from .gitlab-ci.yml.in.
4 # It needs to be regenerated every time a defconfig is added, using
5 # "make .gitlab-ci.yml".
7 image: buildroot/base:20180318.1724
9 .defconfig_script: &defconfig_script
10 - echo 'Configure Buildroot'
12 - echo 'Build buildroot'
14 make > >(tee build.log |grep '>>>') 2>&1 || {
15 echo 'Failed build last output'
22 - mv .gitlab-ci.yml .gitlab-ci.yml.orig
24 - diff -u .gitlab-ci.yml.orig .gitlab-ci.yml
27 # get-developers should print just "No action specified"; if it prints
28 # anything else, it's a parse error.
29 # The initial ! is removed by YAML so we need to quote it.
31 - "! utils/get-developers | grep -v 'No action specified'"
35 # Help flake8 to find the Python files without .py extension.
36 - find * -type f -name '*.py' > files.txt
37 - find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
38 - sort -u files.txt | tee files.processed
40 - python -m flake8 --statistics --count $(cat files.processed)
42 - wc -l files.processed
46 - find . -type f \( -name '*.mk' -o -name '*.hash' -o -name 'Config.*' \)
47 -exec ./utils/check-package {} +
49 .defconfig: &defconfig
50 # Running the defconfigs for every push is too much, so limit to
51 # explicit triggers through the API.
55 script: *defconfig_script
62 - output/build/build-time.log
63 - output/build/packages-file-list.txt
65 .runtime_test: &runtime_test
66 # Keep build directories so the rootfs can be an artifact of the job. The
67 # runner will clean up those files for us.
68 # Multiply every emulator timeout by 10 to avoid sporadic failures in
70 script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME}
76 - test-output/*/.config
77 - test-output/*/images/*