Jenkinsfile update

This commit is contained in:
Damian Michalski 2020-04-03 12:44:21 +02:00
parent e4a7ea753c
commit 966f8d5bf8

7
Jenkinsfile vendored
View File

@ -1,9 +1,12 @@
pipeline {
agent any
stages {
stage('Stage 1') {
stage('Zad_1_5') {
steps {
echo 'Hello world!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452094/s452094-mlworkshops']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh label: '', script: 'wc -l wikiniews_results.tsv > results/result.txt'
archive 'results/**'
}
}
}