ium_470607/lab5/eval/Jenkinsfile

48 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-05-15 18:19:27 +02:00
pipeline {
agent none
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
}
stages {
stage('copy files') {
agent any
steps {
sh '''
2021-05-15 19:35:54 +02:00
cp ./lab5/eval/Dockerfile .
cp ./lab5/eval/script.sh .
cp ./lab5/eval/eval.py .
cp ./lab5/eval/requirements.txt .
2021-05-15 18:19:27 +02:00
'''
}
}
stage('docker') {
agent { dockerfile true }
stages {
stage('copyArtifacts') {
steps {
2021-05-15 19:57:46 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's470607-training/master', selector: buildParameter('BUILD_SELECTOR')
2021-05-15 18:19:27 +02:00
}
}
stage('ls') {
steps {
sh '''
chmod +x script.sh
ls -lah
./script.sh
ls -lah
'''
}
}
stage('archive artifact') {
steps {
archiveArtifacts 'eval.csv'
}
}
}
}
}
}