Skip to content

Commit

Permalink
The tests should run only in 32bits in the main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Jan 22, 2020
1 parent 4d683f1 commit 4ade796
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,17 @@ try{

//Testing step
def testers = [:]
def architectures = ['32', '64']
// We run the whole process in 64 bits all the time.
// The 32 bits process is only run when a PR is integrated

def architectures

if(isDevelopmentBranch()){
architectures = ['32', '64']
}else{
architectures = ['64']
}

def platforms = ['unix', 'osx', 'windows']
for (arch in architectures) {
// Need to bind the label variable before the closure - can't do 'for (label in labels)'
Expand Down

0 comments on commit 4ade796

Please sign in to comment.