s434576-mlworkshops/Jenkinsfile

12 lines
547 B
Plaintext
Raw Normal View History

2019-04-26 10:48:53 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2019-04-26 11:06:04 +02:00
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 11:13:04 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s434576/s434576-mlworkshops']]])
}
2019-04-26 10:48:53 +02:00
}
}
}