Making the build work
This commit is contained in:
parent
45d96872e6
commit
b779a353ac
|
@ -5,7 +5,12 @@ pipeline {
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("Build") {
|
stage("Build") {
|
||||||
agent { docker { image 'schemers/sagittarius' } }
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'schemers/sagittarius'
|
||||||
|
args '--user=root'
|
||||||
|
}
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'apt-get update && apt-get install -y make'
|
sh 'apt-get update && apt-get install -y make'
|
||||||
sh 'make'
|
sh 'make'
|
||||||
|
|
Loading…
Reference in New Issue