Next bix fix!

This commit is contained in:
Dominik 2021-03-25 13:48:00 +01:00
parent a63623c615
commit 5042a7f851
2 changed files with 16 additions and 9 deletions

19
Jenkinsfile vendored
View File

@ -10,19 +10,22 @@ pipeline {
)
}
stages {
stage('Clone_Repo') {
stage('checkout: Check out from version control') {
steps {
// Get some code from a GitHub repository
git 'https://git.wmi.amu.edu.pl/s434788/ium_434788'
}
}
stage('Run shell script') {
stage('sh: Shell Script') {
steps {
sh 'chmod +x test.sh'
sh './test.sh'
archiveArtifacts 'test.csv'
archiveArtifacts 'dev.csv'
archiveArtifacts 'train.csv'
sh 'chmod +x test.sh'
sh './test.sh ${CUTOFF}'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'test.csv'
archiveArtifacts 'dev.csv'
archiveArtifacts 'train.csv'
}
}
stage('Hello') {

View File

@ -9,4 +9,8 @@ tail -n +333 data.shuffled > wine.data.train
cat header.csv wine.data.test > test.csv
cat header.csv wine.data.dev > dev.csv
cat header.csv wine.data.train > train.csv
cat header.csv wine.data.train > train.csv
head -n $1 data.shuffled > zadanie7.data
cat header.csv zadanie7.data > zadanie7.csv