]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - .gitlab-ci.yml.in
.gitlab-ci.yml: use large timeouts for runtime tests
[coffee/buildroot.git] / .gitlab-ci.yml.in
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".
6
7 image: buildroot/base
8
9 .defconfig_script: &defconfig_script
10     - echo 'Configure Buildroot'
11     - make ${CI_BUILD_NAME}
12     - echo 'Build buildroot'
13     - |
14         make > >(tee build.log |grep '>>>') 2>&1 || {
15             echo 'Failed build last output'
16             tail -200 build.log
17             exit 1
18         }
19
20 check-gitlab-ci.yml:
21     script:
22         - mv .gitlab-ci.yml .gitlab-ci.yml.orig
23         - make .gitlab-ci.yml
24         - diff -u .gitlab-ci.yml.orig .gitlab-ci.yml
25
26 check-DEVELOPERS:
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.
30     script:
31         - "! utils/get-developers | grep -v 'No action specified'"
32
33 .defconfig: &defconfig
34     # Running the defconfigs for every push is too much, so limit to
35     # explicit triggers through the API.
36     only:
37         - triggers
38         - tags
39     script: *defconfig_script
40     artifacts:
41         when: always
42         expire_in: 2 weeks
43         paths:
44             - build.log
45             - output/images/
46             - output/build/build-time.log
47             - output/build/packages-file-list.txt
48
49 .runtime_test: &runtime_test
50     # Keep build directories so the rootfs can be an artifact of the job. The
51     # runner will clean up those files for us.
52     # Multiply every emulator timeout by 10 to avoid sporadic failures in
53     # elastic runners.
54     script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_BUILD_NAME}
55     artifacts:
56         when: always
57         expire_in: 2 weeks
58         paths:
59             - test-output/*.log
60             - test-output/*/images/*