s442676-mlworkshops/Jenkinsfile

14 lines
656 B
Plaintext
Raw Normal View History

2019-04-26 13:12:56 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
2019-04-26 14:02:32 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 13:59:58 +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/s442676/s442676-mlworkshops.git']]])
2019-04-26 14:12:10 +02:00
sh label: '', script: './kody.sh'
sh label: '', script: 'ls -l'
2019-04-26 14:09:11 +02:00
}
2019-04-26 13:12:56 +02:00
}
}
}