Files
multiAgent-test/Jenkinsfile
Mpho raf af1f43a261
Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
fix a python typo
2021-02-01 17:53:02 +02:00

16 lines
317 B
Groovy

node {
/* Requires the Docker Pipeline plugin to be installed */
stage('Back-end') {
docker.image('python:3-alpine').inside {
sh 'python --version'
}
}
stage('Front-end') {
docker.image('node:14-alpine').inside {
sh 'node --version'
}
}
}