Skip to content

Commit

Permalink
Disable remote trigger if tests are disabled (#424)
Browse files Browse the repository at this point in the history
Signed-off-by: Sophia Guo <[email protected]>

Signed-off-by: Sophia Guo <[email protected]>
  • Loading branch information
sophia-guo authored Oct 4, 2022
1 parent 8aa43f2 commit 9b92fd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pipelines/build/common/build_base_file.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ class Builder implements Serializable {
context.parallel jobs

// publish to github if needed
// Dont publish release automatically
// Don't publish release automatically
if (publish && !release) {
//During testing just remove the publish
try {
Expand All @@ -917,8 +917,9 @@ class Builder implements Serializable {
}
} else if (publish && release) {
context.println "NOT PUBLISHING RELEASE AUTOMATICALLY"
} else if (release ) {
} else if (release && enableTests) {
//remote trigger job https://ci.eclipse.org/temurin-compliance/job/AQA_Test_Pipeline/
context.echo "Trigger the remote JCK jobs"
remoteTriggerJckTests(buildPlatforms)
}
}
Expand Down

0 comments on commit 9b92fd0

Please sign in to comment.