chucknorris-kotlin-spring/Jenkinsfile

28 lines
705 B
Plaintext
Raw Permalink Normal View History

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:41:13 +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 ;-) */
2020-04-21 13:15:38 +00:00
2020-04-21 13:41:13 +00:00
app.inside {
2020-04-21 13:15:38 +00:00
sh 'echo "Tests passed"'
}
2020-04-21 13:41:13 +00:00
}
2020-04-21 13:15:38 +00:00
2020-04-21 13:04:14 +00:00
}