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 {
agent none
stages {
stage('Back-end') {
agent {
docker { image 'python:3-alpine' }
}
steps {
sh 'python --version'
}
node {
/* Requires the Docker Pipeline plugin to be installed */
stage('Back-end') {
docker.image('python:3-alpine').inside {
sh 'python --version'
}
stage('Front-end') {
agent {
docker { image 'node:14-alpine' }
}
steps {
sh 'node --version'
}
}
stage('Front-end') {
docker.image('node:14-alpine').inside {
sh 'node --version'
}
}
}