Merge pull request #4179 from martin-frbg/jenkinsfix

Run "make clean" on Jenkins first to remove stale objects
This commit is contained in:
Martin Kroeker
2023-08-05 22:47:26 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

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

View File

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