Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
16 lines
317 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|