Making the build work
This commit is contained in:
parent
45d96872e6
commit
b779a353ac
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue