From 88af07f9b9c031795142f2a7fba332959f29d8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20T=C3=A9treault-Pinard?= Date: Wed, 24 Oct 2018 11:50:10 -0400 Subject: [PATCH 1/2] publish build artifacts even when tests fail --- .circleci/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index af9b0439074..168448753f0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -162,8 +162,4 @@ workflows: - build - publish: requires: - - test-jasmine - - test-jasmine2 - - test-image - - test-image2 - - test-syntax + - build From 8b6c089e31a8037f48797186cc10f7846080da4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20T=C3=A9treault-Pinard?= Date: Wed, 24 Oct 2018 11:56:01 -0400 Subject: [PATCH 2/2] echo URLs to artifact files --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 168448753f0..4e6682efee7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -139,6 +139,13 @@ jobs: - store_artifacts: path: dist/plot-schema.json destination: /plot-schema.json + - run: + name: Show URLs to build files + command: | + PROJECT_NUM=45646037 + echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/plotly.js + echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/plotly.min.js + echo https://$CIRCLE_BUILD_NUM-$PROJECT_NUM-gh.circle-artifacts.com/0/plot-schema.json workflows: version: 2