Cleanup Jenkinsfiles
This commit is contained in:
parent
cdf349e089
commit
d02ebda808
38
Jenkinsfile
vendored
38
Jenkinsfile
vendored
@ -1,38 +0,0 @@
|
||||
pipeline {
|
||||
agent any
|
||||
parameters {
|
||||
string(
|
||||
defaultValue: 'marcinkostrzewski',
|
||||
description: 'Kaggle username',
|
||||
name: 'KAGGLE_USERNAME',
|
||||
trim: false
|
||||
)
|
||||
password(
|
||||
defaultValue: '',
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('Install dependencies') {
|
||||
steps {
|
||||
sh "pip install --user -r requirements.txt"
|
||||
}
|
||||
}
|
||||
stage('Fetch and split dataset') {
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||
sh "chmod u+x ./download_dataset.sh"
|
||||
sh "./download_dataset.sh"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts artifacts: 'data/*',
|
||||
onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
}
|
@ -1,15 +1,13 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Get arifacts') {
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's444409-create-dataset', selector: lastSuccessful()
|
||||
}
|
||||
agent {
|
||||
docker {
|
||||
image 's444409-create-dataset'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Show stats') {
|
||||
steps {
|
||||
sh "chmod u+x ./stats.sh"
|
||||
sh "./stats.sh"
|
||||
sh "/app/stats.sh"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,14 +0,0 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 's444409-create-dataset'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Show stats') {
|
||||
steps {
|
||||
sh "/app/stats.sh"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user