16 lines
733 B
Groovy
16 lines
733 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
echo 'Hello world!'
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
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']]])
|
|
sh label: '', script: 'chmod 755 ./kody.sh'
|
|
sh label: '', script: './kody.sh'
|
|
sh label: '', script: 'ls -l'
|
|
|
|
}
|
|
}
|
|
}
|
|
} |