Fixing the build

This commit is contained in:
retropikzel 2024-10-12 08:50:55 +03:00
parent b37347d8b9
commit 1dbc2c518a
2 changed files with 3 additions and 0 deletions

2
Dockerfile.jenkins Normal file
View File

@ -0,0 +1,2 @@
FROM schemers/gauche
RUN apt update && apt install -y make wget

1
Jenkinsfile vendored
View File

@ -19,6 +19,7 @@ pipeline {
stages {
stage("Build") {
steps {
sh 'make clean'
sh 'make'
archiveArtifacts artifacts: 'setup_*.exe'
}