s442673-mlworkshops/Jenkinsfile

16 lines
614 B
Plaintext
Raw Normal View History

2019-04-26 13:17:25 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2019-04-26 13:48:18 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 14:00:00 +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/s442673/s442673-mlworkshops.git']]])
2019-04-26 14:12:05 +02:00
sh label: '', script: './kody.sh'
2019-04-26 14:08:08 +02:00
sh label: '', script: 'ls -l'
2019-04-26 13:17:25 +02:00
}
}
}
2019-04-26 13:12:07 +02:00
}