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
commit 12e98482e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

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

View File

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