Making the build work

This commit is contained in:
retropikzel 2025-04-18 07:57:02 +03:00
parent 45d96872e6
commit b779a353ac
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -5,7 +5,12 @@ pipeline {
}
stages {
stage("Build") {
agent { docker { image 'schemers/sagittarius' } }
agent {
docker {
image 'schemers/sagittarius'
args '--user=root'
}
}
steps {
sh 'apt-get update && apt-get install -y make'
sh 'make'