From a718185b23a45db99cfad9b61f437818faa8f293 Mon Sep 17 00:00:00 2001 From: Dawid Kubicki Date: Fri, 26 Apr 2019 11:13:08 +0200 Subject: [PATCH] zrobione --- Jenkinsfile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ffd6cc0..59e24c2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,6 @@ -pipeline { - agent any - stages { - stage('Stage 1') { - steps { - echo 'Hello world!' - } - } - } +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/s412146/s412146-mlworkshops.git']]]) + sh label: '', script: 'Jenkinsfile' + archiveArtifacts 'Jenkinsfile' } \ No newline at end of file