From 68e1006776cbdb69e330f9f769bf50db26274439 Mon Sep 17 00:00:00 2001 From: Robert Bendun Date: Wed, 5 Apr 2023 00:44:22 +0200 Subject: [PATCH] update artifacts --- Jenkinsfile | 2 +- src/prepare-ztm-data.sh | 3 --- src/stats.sh | 3 --- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100755 src/stats.sh diff --git a/Jenkinsfile b/Jenkinsfile index b0facc2..9489c7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ node { stage('Build') { checkout([$class: 'GitSCM', branches: [[name: 'ztm']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452639/ium_452639']]]) sh 'cd src; ./prepare-ztm-data.sh' - archiveArtifacts artifacts: 'train.csv,test.csv', followSymlinks: false + archiveArtifacts artifacts: 'stop_times.train.tsv,stop_times.test.tsv,stop_times.valid.tsv', followSymlinks: false } } } diff --git a/src/prepare-ztm-data.sh b/src/prepare-ztm-data.sh index 076e11a..aa3f71d 100755 --- a/src/prepare-ztm-data.sh +++ b/src/prepare-ztm-data.sh @@ -40,6 +40,3 @@ fi if [ ! \( -f "stop_times.train.tsv" -a -f "stop_times.test.tsv" -a -f "stop_times.valid.tsv" \) ]; then ./split_train_valid_test.py fi - - -./stats.py diff --git a/src/stats.sh b/src/stats.sh deleted file mode 100755 index 667ce4a..0000000 --- a/src/stats.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -wc -l train.csv