Jenkinsfile update

This commit is contained in:
Filip Izydorczyk 2021-05-25 17:44:28 +02:00
parent 8b4283e8a4
commit 5700bcf802

22
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline { pipeline {
agent { agent {
docker { image 's434700:ium_s434700' } dockerfile true
} }
stages { stages {
stage('checkout: Check out from version control') { stage('checkout: Check out from version control') {
steps { steps {
@ -10,16 +10,16 @@ pipeline {
} }
stage('sh: Shell Script') { stage('sh: Shell Script') {
steps { steps {
sh 'chmod +x data.sh' sh 'chmod +x data.sh'
sh './data.sh' sh './data.sh'
} }
} }
stage('archiveArtifacts') { stage('archiveArtifacts') {
steps { steps {
archiveArtifacts 'train_set.csv' archiveArtifacts 'train_set.csv'
archiveArtifacts 'dev_set.csv' archiveArtifacts 'dev_set.csv'
archiveArtifacts 'test_set.csv' archiveArtifacts 'test_set.csv'
} }
} }
} }
} }