diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 18:13:22 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-02 23:45:07 +0200 |
commit | b287ea6fc5b7644a17d5abbad07317747209f025 (patch) | |
tree | cc3027d5a5c5c0cb29a56d2dc9ff8b6cbde947e9 /.gitlab-ci.yml.in | |
parent | 346e926c1506ec8bc99ce3dd653d01ebb605fc70 (diff) | |
download | buildroot-b287ea6fc5b7644a17d5abbad07317747209f025.tar.gz buildroot-b287ea6fc5b7644a17d5abbad07317747209f025.zip |
.gitlab-ci.yml: run our runtime tests
This commit improves our .gitlab-ci.yml logic to execute our runtime
tests located in support/testing/. To do so, this commit:
- Adds more Debian packages to be installed, namely the nose2 and
pexpect packages needed by the runtime testing infrastructure, as
well as the necessary Qemu emulators
- The description of how to run the runtime tests. Each test is
executed as a separate Gitlab CI job, so that the status of each
test is easily visible in the Gitlab CI web interface.
- The Makefile is improved to auto-generate .gitlab-ci.yml from
.gitlab-ci.yml.in, like we're doing for defconfigs. Since the
dependencies of .gitlab-ci.yml are no longer correct, we abandon
them and instead make it a PHONY target.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Arnout: simplify .gitlab-ci.in a little, removing redundant stuff;
make .gitlab-ci.yml a PHONY target]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to '.gitlab-ci.yml.in')
-rw-r--r-- | .gitlab-ci.yml.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in index 24a1888c1e..c69f9de99c 100644 --- a/.gitlab-ci.yml.in +++ b/.gitlab-ci.yml.in @@ -13,6 +13,7 @@ before_script: - apt-get install -y -qq --no-install-recommends build-essential locales bc ca-certificates file rsync gcc-multilib git bzr cvs mercurial subversion libc6:i386 unzip wget cpio + python-nose2 python-pexpect qemu-system-arm qemu-system-x86 # To be able to generate a toolchain with locales, enable one UTF-8 locale - sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen - /usr/sbin/locale-gen @@ -57,3 +58,10 @@ check-DEVELOPERS: - output/build/build-time.log - output/build/packages-file-list.txt +.runtime_test: &runtime_test + script: ./support/testing/run-tests -o test-output/ -d test-dl/ ${CI_BUILD_NAME} + artifacts: + when: always + expire_in: 2 weeks + paths: + - test-output/*.log |