From 713c2e755b56a9548572b122486c01f905bf0b0c Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sat, 20 Mar 2021 02:36:59 +0000 Subject: [PATCH] gitlab-ci: add systems.json to pipeline artifacts --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e17935ff7..1e14548c77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,11 @@ nixCache: - "nix run -f ./ third_party.nixpkgs.bash -c ./hack/populate_secrets.sh" - "nix build -v -f ./ci-root.nix --substituters \"https://cache.nixos.org/ s3://lukegb-nix-cache?endpoint=storage.googleapis.com&trusted=1\"" - "nix copy -v --to 's3://lukegb-nix-cache?endpoint=storage.googleapis.com' ./result" + - "cat ./result/other-systemPathJSON > systems.json" + artifacts: + paths: + - systems.json + expire_in: '30 days' tags: - cacher