s460929-mlworkshops/Jenkinsfile
2020-04-04 15:24:01 +02:00

50 lines
1.0 KiB
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Githubcheck')
{
steps{
git 'https://git.wmi.amu.edu.pl/s460929/s460929-mlworkshops.git'
}
}
stage("CopyArtifacts")
{
steps{
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage("RunScript")
{
steps{
sh label:"", script:"bash ./count.sh"
}
}
stage("PythonScript")
{
steps{
sh label: '', script: 'python script.py'
}
}
stage("Result")
{
steps{
archiveArtifacts 'srr.txt'
archiveArtifacts 'wer.txt'
archiveArtifacts 'newresults.tsv'
}
}
stage('Hello') {
steps {
echo 'Hello World'
// sh label:'', script: 'whoami'
}
}
}
}