From ca57aade8c710eefbfa76c7775e0234b24c98eb6 Mon Sep 17 00:00:00 2001 From: Tyler Benson Date: Wed, 12 Jun 2019 09:34:20 -0700 Subject: [PATCH] Run latestDepTests in a separate job --- .circleci/config.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4b3fb07018..dfeae6a06c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -93,7 +93,13 @@ jobs: <<: *default_test_job environment: # We are building on Java8, this is our default JVM so no need to set more homes - - TEST_TASK: test latestDepTest jacocoTestReport jacocoTestCoverageVerification + - TEST_TASK: test jacocoTestReport jacocoTestCoverageVerification + + test_latest8: + <<: *default_test_job + environment: + # We are building on Java8, this is our default JVM so no need to set more homes + - TEST_TASK: latestDepTest test_ibm8: <<: *default_test_job @@ -249,6 +255,12 @@ workflows: filters: tags: only: /.*/ + - test_latest8: + requires: + - build + filters: + tags: + only: /.*/ - test_ibm8: requires: - build @@ -305,6 +317,7 @@ workflows: requires: - test_7 - test_8 + - test_latest8 - test_ibm8 - test_9 - test_10 @@ -322,6 +335,7 @@ workflows: requires: - test_7 - test_8 + - test_latest8 - test_ibm8 - test_9 - test_10