pflaenz.li-Symfony/Jenkinsfile

31 lines
773 B
Text
Raw Normal View History

2021-05-05 11:24:41 +02:00
node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("thisfro/plantex")
}
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 {
2021-05-06 14:07:12 +02:00
// php 'bin/phpunit'
sh 'echo "success"'
2021-05-05 11:24:41 +02:00
}
}
2021-05-06 14:59:29 +02:00
stage('Deploy staging') {
2021-05-06 15:26:12 +02:00
sh 'docker-compose --project-directory /opt/plant-exchange --file /opt/plant-exchange/docker-compose.yml up -d'
2021-05-06 14:59:29 +02:00
}
2021-05-05 11:24:41 +02:00
}