ium_s434700/Jenkinsfile
2021-05-25 17:44:28 +02:00

26 lines
624 B
Groovy

pipeline {
agent {
dockerfile true
}
stages {
stage('checkout: Check out from version control') {
steps {
git 'https://git.wmi.amu.edu.pl/s434700/ium_s434700.git'
}
}
stage('sh: Shell Script') {
steps {
sh 'chmod +x data.sh'
sh './data.sh'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'train_set.csv'
archiveArtifacts 'dev_set.csv'
archiveArtifacts 'test_set.csv'
}
}
}
}