Compare commits

2 Commits

Author SHA1 Message Date
af1f43a261 fix a python typo
Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
2021-02-01 17:53:02 +02:00
fc4049abab Using a branch for scripted
Some checks failed
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
2021-02-01 17:16:30 +02:00

28
Jenkinsfile vendored
View File

@@ -1,21 +1,15 @@
pipeline { node {
agent none /* Requires the Docker Pipeline plugin to be installed */
stages {
stage('Back-end') { stage('Back-end') {
agent { docker.image('python:3-alpine').inside {
docker { image 'python:3-alpine' } sh 'python --version'
}
steps {
sh 'python --version'
}
} }
stage('Front-end') { }
agent {
docker { image 'node:14-alpine' } stage('Front-end') {
} docker.image('node:14-alpine').inside {
steps { sh 'node --version'
sh 'node --version'
}
} }
} }
} }