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