Skip to content

Commit

Permalink
#92 bump min node version to 0.10 and add CI testing (#93)
Browse files Browse the repository at this point in the history
Fixes #92
  • Loading branch information
trentm committed Nov 5, 2019
1 parent db839cd commit a438c3f
Show file tree
Hide file tree
Showing 3 changed files with 427 additions and 2 deletions.
86 changes: 86 additions & 0 deletions Jenkinsfile
@@ -0,0 +1,86 @@
@Library('jenkins-joylib@v1.0.2') _

pipeline {

agent none

options {
buildDiscarder(logRotator(numToKeepStr: '30'))
timestamps()
}

stages {
stage('top') {
parallel {
stage('v0.10.48-zone') {
agent {
label joyCommonLabels(image_ver: '15.4.1')
}
tools {
nodejs 'sdcnode-v0.10.48-zone'
}
stages {
stage('check') {
steps{
sh('make check')
}
}
stage('test') {
steps{
sh('make test')
}
}
}
}

stage('v4-zone64') {
agent {
label joyCommonLabels(image_ver: '15.4.1')
}
tools {
nodejs 'sdcnode-v4-zone64'
}
stages {
stage('check') {
steps{
sh('make check')
}
}
stage('test') {
steps{
sh('make test')
}
}
}
}

stage('v6-zone64') {
agent {
label joyCommonLabels(image_ver: '18.4.0')
}
tools {
nodejs 'sdcnode-v6-zone64'
}
stages {
stage('check') {
steps{
sh('make check')
}
}
stage('test') {
steps{
sh('make test')
}
}
}
}
}
}
}

post {
always {
joyMattermostNotification()
}
}
}

0 comments on commit a438c3f

Please sign in to comment.