Jenkinsfile update

This commit is contained in:
s464953 2024-03-20 15:08:18 +01:00
parent 5faa878160
commit d83fc31434
1 changed files with 26 additions and 28 deletions

54
Jenkinsfile vendored
View File

@ -1,29 +1,27 @@
pipeline { node {
agent any stage('Preparation') {
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania properties([
parameters { parameters([
string ( string(
defaultValue: 'Hello World!', defaultValue: 'tomaszzitkiewicz',
description: 'Tekst, którym chcesz przywitać świat', description: 'Kaggle username',
name: 'INPUT_TEXT', name: 'KAGGLE_USERNAME',
trim: false trim: false
) ),
} password(
stages { defaultValue: '',
stage('Hello') { description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
steps { name: 'KAGGLE_KEY'
//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" }
} stage('Build') {
} // Run the maven build
stage('Goodbye!') { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
steps { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
echo 'Goodbye!' sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
//Zarchiwizuj wynik sh 'kaggle datasets list'
archiveArtifacts 'output.txt' }
} }
}
}
} }