From 16ec20e2aba3c86bd4f363a6ad1cc98cf7d96625 Mon Sep 17 00:00:00 2001 From: Kacper Kurzeja Date: Fri, 26 Apr 2019 10:54:19 +0200 Subject: [PATCH] Added archiving --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4c0e663..4994a99 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,5 +2,6 @@ node { copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful() checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s442639/s442639-mlworkshops.git']]]) sh label: '', script: './script.sh' + archiveArtifacts 'output' sh 'ls -l' }