Fixing the build

This commit is contained in:
retropikzel 2024-10-12 07:49:31 +03:00
parent b30d83188c
commit ba6b4a8aca
1 changed files with 5 additions and 2 deletions

7
Jenkinsfile vendored
View File

@ -15,12 +15,15 @@ pipeline {
stages { stages {
stage("Build") { stage("Build") {
steps { steps {
sh 'whoami' sh 'make clean'
sh 'make snow'
sh 'make' sh 'make'
archiveArtifacts artifacts: 'setup_*.exe' archiveArtifacts artifacts: 'setup_*.exe'
} }
} }
} }
post {
always {
deleteDir()
}
} }