Run latestDepTests in a separate job
This commit is contained in:
parent
b112043ea3
commit
ca57aade8c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue