ium_434788/zad8/Jenkinsfile

32 lines
792 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 {
2021-03-26 17:32:20 +01:00
sh 'chmod +x zad8/zad8.sh'
sh 'zad8/zad8.sh'
2021-03-26 17:26:23 +01:00
}
}
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:37:31 +01:00
archiveArtifacts 'final.txt'
archiveArtifacts 'file1.txt'
2021-03-25 15:39:29 +01:00
}
}
}
}