Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
Deps?
Browse files Browse the repository at this point in the history
  • Loading branch information
makyo committed Sep 28, 2017
1 parent f4210fc commit 2a5f9de
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
Expand Up @@ -3,7 +3,16 @@ pipeline {
stages {
stage('Check') {
steps {
sh 'make test'
parallel(
"Check": {
sh 'make test'

},
"Install": {
sh 'make deps'

}
)
}
}
}
Expand Down

0 comments on commit 2a5f9de

Please sign in to comment.