ium_464915/JenkinsfileStats

40 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-03-26 21:15:11 +01:00
pipeline {
agent any
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
}
stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s464915/ium_464915.git'
}
}
stage('Copy Artifacts') {
steps {
script {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464915-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
}
stage('Execute Script') {
2024-04-02 23:00:30 +02:00
agent {
2024-04-02 23:04:59 +02:00
docker {
image 'filnow/ium:ium'
args '-u root'
2024-04-02 23:00:30 +02:00
}
2024-03-26 21:15:11 +01:00
}
steps {
2024-04-02 23:00:30 +02:00
sh 'bash ./calculate.sh'
2024-03-26 21:15:11 +01:00
archiveArtifacts artifacts: 'stats.txt', onlyIfSuccessful: true
}
}
}
}