Adding release builds
This commit is contained in:
parent
00351e0c4b
commit
85b506bbd9
|
|
@ -20,6 +20,7 @@ pipeline {
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Build and install') {
|
stage('Build and install') {
|
||||||
|
when { not { branch 'release' } }
|
||||||
steps {
|
steps {
|
||||||
sh "make build-chibi"
|
sh "make build-chibi"
|
||||||
sh "make install"
|
sh "make install"
|
||||||
|
|
@ -27,6 +28,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
|
when { not { branch 'release' } }
|
||||||
parallel {
|
parallel {
|
||||||
stage('R6RS') {
|
stage('R6RS') {
|
||||||
steps {
|
steps {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue