23 lines
557 B
Groovy
23 lines
557 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s440058/ium_440058.git'
|
|
}
|
|
}
|
|
stage('sh: Shell Script') {
|
|
steps {
|
|
sh 'chmod +x script.sh'
|
|
sh './script.sh ${CUTOFF}'
|
|
}
|
|
}
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
archiveArtifacts 'scriptTest.csv'
|
|
archiveArtifacts 'scriptDev.csv'
|
|
archiveArtifacts 'scriptTrain.csv'
|
|
}
|
|
}
|
|
}
|
|
} |