From f0ba860bdb320e631078370cbf9e99ec8de343e7 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Tue, 2 Oct 2018 10:21:47 +0200 Subject: [PATCH] circleci: store build outputs as artifacts (#4685) Signed-off-by: Simon Pasquier --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1294c9cf5..44b3d0e3b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,13 @@ jobs: - checkout - run: make promu - run: make check_license style unused staticcheck build - - run: rm -v prometheus + - store_artifacts: + path: prometheus + destination: /build/prometheus + - store_artifacts: + path: promtool + destination: /build/promtool + - run: rm -v prometheus promtool build: machine: true @@ -28,6 +34,9 @@ jobs: root: . paths: - .build + - store_artifacts: + path: .build + destination: /build docker_hub_master: docker: