This commit is contained in:
bartosz.maslanka.consultant 2023-04-21 16:05:54 +02:00
parent c467dc04b0
commit d606d60ec0

24
Jenkinsfile vendored
View File

@ -1,10 +1,9 @@
pipeline { node {
stages {
stage('Preparation') { stage('Preparation') {
properties([ properties([
parameters([ parameters([
string( string(
defaultValue: 'tomaszzitkiewicz', defaultValue: 'bartekmalanka',
description: 'Kaggle username', description: 'Kaggle username',
name: 'KAGGLE_USERNAME', name: 'KAGGLE_USERNAME',
trim: false trim: false
@ -17,26 +16,11 @@ pipeline {
]) ])
]) ])
} }
stage('Checkout') { stage('Build') {
steps { // Run the maven build
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487184/ium_487184'
}
}
stage('Run Script') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset > output.txt' sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset > output.txt'
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts 'output.txt'
}
} }
} }
} }