Skip to content

Commit

Permalink
Disabling the build of OSX 32 bits, as the slave does not support it …
Browse files Browse the repository at this point in the history
…anymore
  • Loading branch information
tesonep committed Jul 1, 2020
1 parent fdc01a5 commit eb227e6
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,16 @@ try{
for (platf in platforms) {
// Need to bind the label variable before the closure - can't do 'for (label in labels)'
def platform = platf
testers["${platform}-${architecture}"] = {
node(platform) { stage("Tests-${platform}-${architecture}") {
timeout(35) {
runTests(architecture)
runTests(architecture, "Kernel")
// Disabling the test of OSX 32bits
if(platf != 'osx' || arch != '32'){
testers["${platform}-${architecture}"] = {
node(platform) { stage("Tests-${platform}-${architecture}") {
timeout(35) {
runTests(architecture)
runTests(architecture, "Kernel")
}
}}
}
}}
}
}
}
Expand Down

0 comments on commit eb227e6

Please sign in to comment.