s460929-mlworkshops/Jenkinsfile
2020-04-03 12:37:18 +02:00

27 lines
538 B
Groovy

pipeline {
agent any
stages {
stage('Githubcheck')
{
steps{
git 'https://git.wmi.amu.edu.pl/s460929/s460929-mlworkshops.git'
}
}
stage("CopyArtifacts")
{
steps{
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Hello') {
steps {
echo 'Hello World'
// sh label:'', script: 'whoami'
}
}
}
}