😃 Add emoji to pipeline stages

This commit is contained in:
Ben Chatelain 2019-01-12 18:51:45 -07:00
parent 2d6e4b059f
commit 52b25b716f

8
Jenkinsfile vendored
View file

@ -29,7 +29,7 @@ pipeline {
}
stages {
stage('Assemble') {
stage('🏗️ Assemble') {
steps {
ansiColor('xterm') {
sh 'script/bootstrap'
@ -39,21 +39,21 @@ pipeline {
}
}
}
stage('Test') {
stage('Test') {
steps {
ansiColor('xterm') {
sh 'script/test'
}
}
}
stage('Lint') {
stage('🚨 Lint') {
steps {
ansiColor('xterm') {
sh 'script/lint'
}
}
}
stage('Danger') {
stage('⚠️ Danger') {
steps {
ansiColor('xterm') {
sh 'script/danger'