-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run tests on multiple clusters in parallel #37
Conversation
@@ -36,44 +72,39 @@ pipeline { | |||
timestamps { | |||
withEnv([ | |||
"IMAGETAG=${env.GIT_COMMIT}", | |||
"LONG=${params.LONG ? 1 : 0}", | |||
"PUSHIMAGES=1", | |||
]) { | |||
sh "make" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does execution stop here as soon as the first make
fails or will the other steps continue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes - execution stops on first fail - https://jenkins.io/doc/pipeline/tour/running-multiple-steps/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Already approved |
Running tests on multiple clusters in parallel.
The tests themselves still fail, but that is for other reasons