mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
🎨 Add ansiColor blocks
This commit is contained in:
parent
e3b72849aa
commit
044775877e
1 changed files with 16 additions and 8 deletions
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
|
@ -31,26 +31,34 @@ pipeline {
|
|||
stages {
|
||||
stage('Assemble') {
|
||||
steps {
|
||||
sh 'script/bootstrap'
|
||||
sh 'script/build'
|
||||
sh 'script/archive'
|
||||
sh 'script/package build/distribution-tmp'
|
||||
ansiColor('xterm') {
|
||||
sh 'script/bootstrap'
|
||||
sh 'script/build'
|
||||
sh 'script/archive'
|
||||
sh 'script/package build/distribution-tmp'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'script/test'
|
||||
ansiColor('xterm') {
|
||||
sh 'script/test'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Lint') {
|
||||
steps {
|
||||
echo 'Not implemented'
|
||||
ansiColor('xterm') {
|
||||
echo 'Not implemented'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Danger') {
|
||||
steps {
|
||||
// sh 'bundle install --verbose'
|
||||
sh 'bundle exec danger --verbose'
|
||||
ansiColor('xterm') {
|
||||
// sh 'bundle install --verbose'
|
||||
sh 'bundle exec danger --verbose'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue