From df076b3c8898b92629c9e5b2bbda26e3b5405eab Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Tue, 15 Sep 2020 17:06:10 -0300 Subject: [PATCH] config: Make CI 'dist' job depend on 'test' jobs CI workflows will finish faster if we do not attempt to build distributable artifacts when tests fail. --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fcf3ad71..55df43b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -151,7 +151,9 @@ workflows: - "3.7.2" - "3.7.6" - "3.8.3" - - dist + - dist: + requires: + - test - deploy: requires: - dist