ium_434788/zad8/Jenkinsfile

31 lines
735 B
Plaintext
Raw Normal View History

2021-03-25 15:39:29 +01:00
pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's434788-create-dataset',
filter: "*.csv",
target: 'test']);
}
}
}
2021-03-26 17:26:23 +01:00
stage('sh: Shell Script') {
steps {
sh 'chmod +x zad8.sh'
sh './zad8.sh
}
}
2021-03-25 15:39:29 +01:00
stage('test_save') {
steps {
archiveArtifacts 'test/test.csv'
archiveArtifacts 'test/dev.csv'
archiveArtifacts 'test/train.csv'
archiveArtifacts 'test/zadanie7.csv'
2021-03-26 17:26:23 +01:00
archiveArtifacts 'test/final.txt'
2021-03-25 15:39:29 +01:00
}
}
}
}