jenkinsfile

This commit is contained in:
unknown 2020-04-03 11:43:27 +02:00
parent 0708880f81
commit 9c5627ff0e

6
Jenkinsfile vendored
View File

@ -2,8 +2,12 @@ pipeline {
agent any
stages {
stage('Stage 1') {
node {
checkout scm
stash 'source'
}
steps {
checkout: 'https://git.wmi.amu.edu.pl/s421818/s421818-mlworkshops'
echo 'Hello world!'
}
}
}