From 1a13fd2e8d2ff8c047107b6dac33044345037629 Mon Sep 17 00:00:00 2001 From: s434765 Date: Sat, 27 Mar 2021 22:57:58 +0100 Subject: [PATCH] pipeline fix --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c079258..e2d701d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,12 +25,13 @@ node { sh ''' #!/usr/bin/env bash chmod 777 get_data_simple.sh - ./get_data_simple.sh $CUTOFF + ./get_data_simple.sh $CUTOFF | tee output.txt ''' archiveArtifacts "data_dev" archiveArtifacts "data_shuf" archiveArtifacts "data_test" archiveArtifacts "data_train" + archiveArtifacts "output.txt" } } } \ No newline at end of file