This commit is contained in:
Dawid Kubicki 2019-04-26 11:13:08 +02:00
parent 4620a9361a
commit a718185b23

14
Jenkinsfile vendored
View File

@ -1,10 +1,6 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
node{
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s412146/s412146-mlworkshops.git']]])
sh label: '', script: 'Jenkinsfile'
archiveArtifacts 'Jenkinsfile'
}