Skip to content

Commit

Permalink
TRITON-1943 add Jenkinsfiles to Triton repositories (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
cburroughs committed Oct 22, 2019
1 parent e97ab59 commit cb8c666
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions Jenkinsfile
@@ -0,0 +1,86 @@
@Library('jenkins-joylib@v1.0.1') _

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-zone') {
agent {
label joyCommonLabels(image_ver: '15.4.1')
}
tools {
nodejs 'sdcnode-v4-zone'
}
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 cb8c666

Please sign in to comment.