categorize jenkins stage

This commit is contained in:
s452111 2020-04-21 21:07:38 +02:00
parent 17f6ffef8d
commit 62506b9399
4 changed files with 27 additions and 11 deletions

36
Jenkinsfile vendored
View File

@ -1,15 +1,31 @@
pipeline {
agent { dockerfile true }
stages {
stage('Hello') {
steps {
echo 'Hello World'
checkout scm;
copyArtifacts(projectName: 'ASR-eval');
sh 'chmod +x ./service.sh';
sh './service.sh';
archiveArtifacts artifacts: 'lines_count.txt', fingerprint: true;
}
}
stage('Checkout') {
steps {
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[
url: 'https://git.wmi.amu.edu.pl/s452111/s452111-mlworkshops']]])
}
}
stage('Copy Artifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv, fingerprintArtifacts: true,
projectName: 'ASR-eval', selector: lastSuccessful()
}
}
stage('Count words') {
sh 'chmod +x ./service.sh'
sh './service.sh wikiniews_results.tsv'
}
stage('Archive artifacts') {
steps {
archiveArtifacts: 'lines_count.txt', fingerprint: true
}
}
}
}

View File

View File

View File

@ -1,2 +1,2 @@
#!/bin/bash
wc -l ./new_file > lines_count.txt
wc -l wikiniews_results.tsv > lines_count.txt