Browse Source

Merge pull request #4179 from martin-frbg/jenkinsfix

Run "make clean" on Jenkins first to remove stale objects
tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
12e98482e9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Jenkinsfile
  2. +1
    -1
      Jenkinsfile.pwr

+ 1
- 1
Jenkinsfile View File

@@ -7,7 +7,7 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'make'
sh 'make clean && make'
}
}
}


+ 1
- 1
Jenkinsfile.pwr View File

@@ -9,7 +9,7 @@ pipeline {
steps {
sh 'sudo apt update'
sh 'sudo apt install gfortran -y'
sh 'make'
sh 'make clean && make'
}
}
}


Loading…
Cancel
Save