diff options
author | 2019-03-18 23:27:44 +0100 | |
---|---|---|
committer | 2019-04-26 13:55:14 +0200 | |
commit | 5fa2044f91ef709ae076927bc354ce6f78905356 (patch) | |
tree | 5aba9f0171284a043db612f5d53ed2e61651e768 /.gitlab-ci.yml | |
parent | 6afb441957713357f74d9495414b8375f193589b (diff) | |
download | paludis-5fa2044f91ef709ae076927bc354ce6f78905356.tar.gz paludis-5fa2044f91ef709ae076927bc354ce6f78905356.tar.xz |
ci: Add Exherbo testing build
Builds paludis with GCC in an Exherbo environment with all
testing/broken packages unmasked, so that we catch problems
with future versions of those packages early
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 460169cd6..dcd893a21 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,6 +38,24 @@ test:exherbo: - build:exherbo <<: *test-template +build:exherbo-testing: + variables: + DISTRIBUTION: "exherbo" + COMPILER: "gcc" + VERSION: "next" + allow_failure: true + <<: *build-template + +test:exherbo-testing: + variables: + DISTRIBUTION: "exherbo" + COMPILER: "gcc" + VERSION: "next" + dependencies: + - build:exherbo-testing + allow_failure: true + <<: *test-template + build:exherbo-clang: variables: DISTRIBUTION: "exherbo" |