Update Jenkinsfile
This commit is contained in:
parent
31388d1e4b
commit
b3728245af
43
Jenkinsfile
vendored
43
Jenkinsfile
vendored
@ -1,28 +1,41 @@
|
||||
pipeline {
|
||||
agent any
|
||||
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
|
||||
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: 'Hello World!',
|
||||
description: 'Tekst, którym chcesz przywitać świat',
|
||||
name: 'INPUT_TEXT',
|
||||
trim: false
|
||||
)
|
||||
defaultValue: '10000',
|
||||
name: 'CUTOFF',
|
||||
description: 'Liczba wierszy do obcięcia ze zbioru danych')
|
||||
string(
|
||||
defaultValue: '',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
description: 'Kaggle username')
|
||||
password(
|
||||
defaultValue: '',
|
||||
name: 'KAGGLE_KEY',
|
||||
description: 'Kaggle API key')
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Hello') {
|
||||
stage('Clone Repository') {
|
||||
steps {
|
||||
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
|
||||
echo "INPUT_TEXT: ${INPUT_TEXT}"
|
||||
//Wywołaj w konsoli komendę "figlet", która generuje ASCI-art
|
||||
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
|
||||
git url: "https://git.wmi.amu.edu.pl/s464962/ium_464962"
|
||||
}
|
||||
}
|
||||
stage('Goodbye!') {
|
||||
|
||||
stage('Download') {
|
||||
steps {
|
||||
echo 'Goodbye!'
|
||||
//Zarchiwizuj wynik
|
||||
archiveArtifacts 'output.txt'
|
||||
withEnv([
|
||||
"KAGGLE_USERNAME=${env.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${env.KAGGLE_KEY}"
|
||||
]) {
|
||||
sh "bash ./create-dataset.sh ${params.CUTOFF}"
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Archive Results') {
|
||||
steps {
|
||||
archiveArtifacts artifacts: 'data/*', onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user