diff options
author | Patrick Spek <p.spek@tyil.nl> | 2020-11-16 16:34:10 +0100 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2020-11-16 16:34:10 +0100 |
commit | 5125cf19cf9c06a9df54c216beeb42e022a4ea5f (patch) | |
tree | 655b77c439f034fe74b3e4430e69f714c0702cbb | |
parent | 2cba16303f5ae6c5d1154a9767ce37dd86a4a2b1 (diff) | |
download | config-5125cf19cf9c06a9df54c216beeb42e022a4ea5f.tar.gz config-5125cf19cf9c06a9df54c216beeb42e022a4ea5f.tar.bz2 |
Update GitLab CI file
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 965d330..ebcf4c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,11 @@ Config: only: - master - image: rakudo-star + image: registry.gitlab.com/tyil/docker-perl6:debian-dev-latest before_script: - - zef install . --deps-only --test-depends --/test - script: AUTHOR_TESTING=1 prove -l + - zef install App::Prove6 + - zef install --deps-only --test-depends --/test . + script: AUTHOR_TESTING=1 prove6 -l artifacts: name: "raku-Config" paths: @@ -17,7 +18,8 @@ Config: test: except: - master - image: rakudo-star + image: registry.gitlab.com/tyil/docker-perl6:debian-dev-latest before_script: + - zef install App::Prove6 - zef install . --deps-only --test-depends --/test - script: AUTHOR_TESTING=1 prove -lv + script: AUTHOR_TESTING=1 prove6 -lv |