2020-04-21 13:04:14 +00:00
|
|
|
node {
|
|
|
|
|
|
|
|
def app
|
|
|
|
|
|
|
|
stage('Clone repository') {
|
|
|
|
/* Let's make sure we have the repository cloned to our workspace */
|
|
|
|
|
|
|
|
checkout scm
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:10:21 +00:00
|
|
|
stage('Build image') {
|
|
|
|
/* This builds the actual image; synonymous to
|
|
|
|
* docker build on the command line */
|
|
|
|
|
|
|
|
app = docker.build("wishi/chuckjokes")
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:15:38 +00:00
|
|
|
stage('Test image') {
|
|
|
|
/* Ideally, we would run a test framework against our image.
|
|
|
|
* For this example, we're using a Volkswagen-type approach ;-) */
|
|
|
|
|
|
|
|
app.inside {
|
|
|
|
sh 'echo "Tests passed"'
|
|
|
|
sh 'pwd'
|
|
|
|
}
|
|
|
|
|
|
|
|
// let's not use the Volkswagen approach for security
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:04:14 +00:00
|
|
|
}
|