.
This commit is contained in:
parent
b7068af19e
commit
fc056c2c4b
@ -1,29 +1,28 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR'
|
||||
)
|
||||
node {
|
||||
stage('Preparation') {
|
||||
properties([
|
||||
parameters([
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR'
|
||||
)
|
||||
])
|
||||
])
|
||||
}
|
||||
stage('checkout: Check out from version control') {
|
||||
checkout scm
|
||||
}
|
||||
stages {
|
||||
stage('Copy Artifacts') {
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s444510-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||
}
|
||||
}
|
||||
|
||||
stage('Calculate Dataset Statistics') {
|
||||
steps {
|
||||
sh 'chmod +x dataset-stats.sh'
|
||||
sh './dataset-stats.sh'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: 'stats.txt', fingerprint: true
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Copy Artifacts') {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s444510-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
||||
}
|
||||
}
|
||||
|
||||
stage('Calculate Dataset Statistics') {
|
||||
sh 'chmod +x dataset-stats.sh'
|
||||
sh './dataset-stats.sh'
|
||||
}
|
||||
stage('Save artefact') {
|
||||
archiveArtifacts artifacts: 'stats.txt', fingerprint: true
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
head barcelona_weekends.dev.csv
|
||||
cat barcelona_weekends.dev.csv | wc -l > stats.txt
|
||||
|
Loading…
Reference in New Issue
Block a user