Compare commits

..

8 Commits

Author SHA1 Message Date
retropikzel 02a71445a5 Fixing the build 2024-10-12 07:51:35 +03:00
retropikzel 30dc66af7b Fixing the build 2024-10-12 07:51:01 +03:00
retropikzel cc520faa47 Fixing the build 2024-10-12 07:49:49 +03:00
retropikzel ba6b4a8aca Fixing the build 2024-10-12 07:49:31 +03:00
retropikzel b30d83188c Fixing the build 2024-10-12 07:47:48 +03:00
retropikzel 7ce258d771 Fixing the build 2024-10-12 07:47:36 +03:00
retropikzel adbfdf23db Fixing the build 2024-10-12 07:47:14 +03:00
retropikzel fac23b7b38 Make the build work in Jenkins (#1)
Reviewed-on: #1
Co-authored-by: retropikzel <retropikzel@iki.fi>
Co-committed-by: retropikzel <retropikzel@iki.fi>
2024-10-12 00:42:33 -04:00
1 changed files with 10 additions and 1 deletions

11
Jenkinsfile vendored
View File

@ -8,6 +8,10 @@ pipeline {
}
}
triggers {
cron("59 23 * * 1") // Build every monday
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
@ -15,11 +19,16 @@ pipeline {
stages {
stage("Build") {
steps {
sh 'whoami'
sh 'make clean'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}
}
}
post {
always {
deleteDir()
}
}
}