ium_z434686/Jenkinsfile_dataset_stats

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-04-18 20:37:10 +02:00
pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
2023-04-18 20:53:27 +02:00
parameters{
choice(
choices: ['lastSuccessful()', 'lastCompleted()', 'latestSavedBuild()'],
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)}
2023-04-18 20:37:10 +02:00
stages {
stage('clear_all') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
sh 'rm -rf ium_z434686'
}
}
stage('checkout') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686'
}
}
2023-04-18 20:54:34 +02:00
stage('copy_artifacts') {
steps {
copyArtifacts filter: 'dataset.csv', fingerprintArtifacts: true, projectName: 'z-s434686-create-dataset', selector: workspace()
}
}
2023-04-18 21:00:26 +02:00
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'dataset.csv'
}
}
2023-04-18 20:37:10 +02:00
}
}