2 Commits

Author SHA1 Message Date
admin-tea af1f43a261 fix a python typo
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
2021-02-01 17:53:02 +02:00
admin-tea fc4049abab Using a branch for scripted
ci-tests/multiAgent-test/pipeline/head There was a failure building this commit
2021-02-01 17:16:30 +02:00
Vendored
+11 -17
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'
}
}
}