ium_452627/Jenkinsfile_2

36 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

pipeline {
agent any
//Definijuemy parametry, ktore bedzie mozna podac podczas wywolywania zadania
2023-03-28 13:38:32 +02:00
parameters {
buildSelector (
name: 'BUILD_SELECTOR',
2023-03-28 13:39:45 +02:00
defaultSelector: lastSuccessful(),
2023-03-28 13:38:32 +02:00
description: 'Which build to use for copying artifacts?',
)
}
stages {
2023-03-28 13:38:32 +02:00
stage('Load Artifact') {
steps {
2023-03-28 13:46:32 +02:00
script {
copyArtifacts fingerprintArtifacts: true, projectName: 's452627-create-dataset', selector: buildParameter("BUILD_SELECTOR")
2023-03-28 13:46:32 +02:00
}
2023-03-28 13:38:32 +02:00
}
2023-03-28 13:39:08 +02:00
}
stage('Run Script') {
steps {
script {
2023-04-04 19:03:50 +02:00
//sh "chmod +x -R ${env.WORKSPACE}"
//sh './make_statistic.sh | tee output_statistic.txt'
2023-04-04 19:05:43 +02:00
sh 'docker build . -t jhenyk/ium:latest'
2023-04-04 19:07:51 +02:00
sh 'docker run jhenyk/ium:latest | tee output_statistic.txt'
}
}
}
stage('Archive Output') {
steps {
2023-03-28 13:46:32 +02:00
archiveArtifacts 'output_statistic.txt'
}
}
}
}