diff options
author | 2019-04-26 13:54:44 +0200 | |
---|---|---|
committer | 2019-04-26 13:55:14 +0200 | |
commit | b1d8cbcd757ae665ea2e956847b038848026c9e2 (patch) | |
tree | 6089830cc0e6cdaf416b8b3d6c662267c2466967 | |
parent | b7164eea5c7aeb5f230bdac881170520bf6b2de7 (diff) | |
download | paludis-b1d8cbcd757ae665ea2e956847b038848026c9e2.tar.gz paludis-b1d8cbcd757ae665ea2e956847b038848026c9e2.tar.xz |
ci: Use 'artifacts' to pass build folder between jobs
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 068112c3a..0a4c6c84a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,15 +10,13 @@ stages: - mkdir -pv build-obj && cd build-obj - ../ci/configure-paludis.sh .. ${DISTRIBUTION} ${COMPILER} - ninja -j$(nproc) all - cache: &build_artifact_cache - key: build-${DISTRIBUTION}-${COMPILER}-${VERSION} + artifacts: paths: - build-obj/ .test-template: &test-template stage: test image: paludis/${DISTRIBUTION}-${COMPILER}:${VERSION} - cache: *build_artifact_cache script: - cd build-obj - ctest -V |