Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
22 lines
435 B
Groovy
22 lines
435 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Back-end') {
|
|
agent {
|
|
docker { image 'python:3-alpine' }
|
|
}
|
|
steps {
|
|
sh 'python --version'
|
|
}
|
|
}
|
|
stage('Front-end') {
|
|
agent {
|
|
docker { image 'node:14-alpine' }
|
|
}
|
|
steps {
|
|
sh 'node --version'
|
|
}
|
|
}
|
|
}
|
|
}
|