Files
multiAgent-test/Jenkinsfile
Mpho raf c467a16d0a
Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
Adding jenkins file for multiple agents
2021-02-01 17:10:40 +02:00

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'
}
}
}
}