29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
pipeline{
|
|
agent any
|
|
parameters{
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts',
|
|
name: 'BUILD_SELECTOR')
|
|
}
|
|
stages{
|
|
stage('Copy artifacts'){
|
|
steps{
|
|
copyArtifacts filter: 'dev.csv, train.csv, test.csv', fingerprintArtifacts: false, projectName: 's437622-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
}
|
|
}
|
|
stage('Docker') {
|
|
steps {
|
|
script {
|
|
def img=docker.build('jpogodzinski/ium:1')
|
|
img.inside {
|
|
sh 'rm -rf ium_s437622'
|
|
sh 'git clone https://git.wmi.amu.edu.pl/s437622/ium_s437622.git'
|
|
sh "chmod +x ium_s437622/stats.sh"
|
|
sh "ium_437622/stats.sh"
|
|
archiveArtifacts 'stats.txt'
|
|
}}
|
|
}
|
|
}
|
|
}
|
|
} |