New builds
This commit is contained in:
parent
65e5b8f149
commit
9af7a8109a
|
|
@ -22,17 +22,14 @@ pipeline {
|
|||
}
|
||||
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
script {
|
||||
"chibi sagittarius".split().each { scheme ->
|
||||
stage("${scheme}") {
|
||||
stage('chibi') {
|
||||
agent {
|
||||
docker {
|
||||
image "schemers/${scheme}:head"
|
||||
image "schemers/chibi:head"
|
||||
reuseNode true
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh "apt-get update && apt-get install -y git ca-certificates gcc make libffi-dev"
|
||||
sh "git clone https://github.com/ashinn/chibi-scheme.git --depth=1"
|
||||
sh "rake -j8 -C chibi-scheme"
|
||||
|
|
@ -48,9 +45,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
|
|
|
|||
Loading…
Reference in New Issue