diff options
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" |