33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
pipeline {
|
|
agent any
|
|
parameters{
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts',
|
|
name: 'BUILD_SELECTOR'
|
|
)
|
|
}
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
echo 'Checking out...'
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 'f695fe86-8cca-47f7-a546-d3bfd1059fd4', url: 'https://git.wmi.amu.edu.pl/s449288/ium_s449288.git']]])
|
|
echo 'Checked out'
|
|
echo 'Copying artifacts...'
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's449288-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
echo 'Artifacts copied'
|
|
echo 'Unpacking artifacts'
|
|
sh 'tar xvzf lego_sets.tar.gz'
|
|
echo 'Artifacts unpacked'
|
|
echo 'Creating statistics file...'
|
|
sh 'chmod u+x ./statystyki.sh'
|
|
sh './statystyki.sh lego_sets.train.csv'
|
|
echo 'Statistics file created'
|
|
echo 'Archiving results...'
|
|
archiveArtifacts 'statystyki.txt'
|
|
echo 'Results archived'
|
|
}
|
|
}
|
|
}
|
|
}
|