Tom Willemse
4333a9ec65
This is the first step in improving my coleslaw builds. For this commit the only thing that it does is build the project into a staging directory.
11 lines
160 B
Groovy
11 lines
160 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh coleslaw
|
|
}
|
|
}
|
|
}
|
|
}
|