2017-02-14 00:23:03 +01:00
|
|
|
# Configuration for Gitlab-CI.
|
|
|
|
# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
|
|
|
|
# The .gitlab-ci.yml file is generated from .gitlab-ci.yml.in.
|
|
|
|
# It needs to be regenerated every time a defconfig is added, using
|
|
|
|
# "make .gitlab-ci.yml".
|
|
|
|
|
2018-03-31 01:10:55 +02:00
|
|
|
image: buildroot/base:20180318.1724
|
2017-02-14 00:23:03 +01:00
|
|
|
|
|
|
|
.defconfig_script: &defconfig_script
|
|
|
|
- echo 'Configure Buildroot'
|
2017-10-23 16:26:14 +02:00
|
|
|
- make ${CI_JOB_NAME}
|
2017-02-14 00:23:03 +01:00
|
|
|
- echo 'Build buildroot'
|
|
|
|
- |
|
|
|
|
make > >(tee build.log |grep '>>>') 2>&1 || {
|
|
|
|
echo 'Failed build last output'
|
|
|
|
tail -200 build.log
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
check-gitlab-ci.yml:
|
|
|
|
script:
|
|
|
|
- mv .gitlab-ci.yml .gitlab-ci.yml.orig
|
|
|
|
- make .gitlab-ci.yml
|
|
|
|
- diff -u .gitlab-ci.yml.orig .gitlab-ci.yml
|
|
|
|
|
2017-06-30 18:42:53 +02:00
|
|
|
check-DEVELOPERS:
|
2017-07-01 20:22:27 +02:00
|
|
|
# get-developers should print just "No action specified"; if it prints
|
|
|
|
# anything else, it's a parse error.
|
|
|
|
# The initial ! is removed by YAML so we need to quote it.
|
2017-06-30 18:42:53 +02:00
|
|
|
script:
|
2017-07-01 20:22:27 +02:00
|
|
|
- "! utils/get-developers | grep -v 'No action specified'"
|
2017-06-30 18:42:53 +02:00
|
|
|
|
2018-03-13 04:09:44 +01:00
|
|
|
check-flake8:
|
|
|
|
before_script:
|
|
|
|
# Help flake8 to find the Python files without .py extension.
|
|
|
|
- find * -type f -name '*.py' > files.txt
|
|
|
|
- find * -type f -print0 | xargs -0 file | grep 'Python script' | cut -d':' -f1 >> files.txt
|
|
|
|
- sort -u files.txt | tee files.processed
|
|
|
|
script:
|
|
|
|
- python -m flake8 --statistics --count $(cat files.processed)
|
|
|
|
after_script:
|
|
|
|
- wc -l files.processed
|
|
|
|
|
2017-11-30 00:08:45 +01:00
|
|
|
check-package:
|
|
|
|
script:
|
2018-08-11 12:44:23 +02:00
|
|
|
- make check-package
|
2017-11-30 00:08:45 +01:00
|
|
|
|
2017-02-14 00:23:03 +01:00
|
|
|
.defconfig: &defconfig
|
|
|
|
# Running the defconfigs for every push is too much, so limit to
|
|
|
|
# explicit triggers through the API.
|
|
|
|
only:
|
|
|
|
- triggers
|
|
|
|
- tags
|
2018-10-29 00:58:37 +01:00
|
|
|
- /-defconfigs$/
|
2017-02-14 00:23:03 +01:00
|
|
|
script: *defconfig_script
|
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
expire_in: 2 weeks
|
|
|
|
paths:
|
|
|
|
- build.log
|
|
|
|
- output/images/
|
|
|
|
- output/build/build-time.log
|
|
|
|
- output/build/packages-file-list.txt
|
|
|
|
|
2017-07-02 18:13:22 +02:00
|
|
|
.runtime_test: &runtime_test
|
2018-10-21 12:03:03 +02:00
|
|
|
# Running the runtime tests for every push is too much, so limit to
|
|
|
|
# explicit triggers through the API.
|
|
|
|
only:
|
|
|
|
- triggers
|
|
|
|
- tags
|
2018-10-29 00:58:37 +01:00
|
|
|
- /-runtime-tests$/
|
2017-07-30 06:49:43 +02:00
|
|
|
# Keep build directories so the rootfs can be an artifact of the job. The
|
|
|
|
# runner will clean up those files for us.
|
2017-08-05 04:05:20 +02:00
|
|
|
# Multiply every emulator timeout by 10 to avoid sporadic failures in
|
|
|
|
# elastic runners.
|
2017-10-23 16:26:14 +02:00
|
|
|
script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME}
|
2017-07-02 18:13:22 +02:00
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
expire_in: 2 weeks
|
|
|
|
paths:
|
|
|
|
- test-output/*.log
|
2017-12-20 15:19:33 +01:00
|
|
|
- test-output/*/.config
|
2017-07-30 06:49:43 +02:00
|
|
|
- test-output/*/images/*
|