diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dcf3e6c..e6e527e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,3 +57,15 @@ full-test-spdx: - cd ~/spdx-license-list - apt update && apt install -y default-jre-headless - makers + +full-test-linux: + stage: full-test + script: + - cargo install --path . + - mdkir ~/linux + - cd ~/linux + - wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.11.11.tar.xz + - tar xf linux-*.tar.xz + - cd linux-*/ + - makers -p + - makers || echo "haven't given a Kconfig yet, so no surprise that it failed" |