s416239-mlworkshops/Jenkinsfile

16 lines
541 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
echo 'Trigger Check'
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default',
submoduleCfg: [], userRemoteConfigs: [[url:
'https://git.wmi.amu.edu.pl/s416239/s416239-mlworkshops.git']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}