This commit is contained in:
Jan Nowak 2021-04-10 20:53:06 +02:00
parent 4260c20ebd
commit 992d34843a

60
Jenkinsfile vendored
View File

@ -1,41 +1,41 @@
pipeline { pipeline {
agent any agent any
parameters { parameters {
string( string(
defaultValue: '0', defaultValue: '0',
description: 'Umożliwia zdefiniowanie wielkości odcięcia zbioru danych.', description: 'Umożliwia zdefiniowanie wielkości odcięcia zbioru danych.',
name: 'CUTOFF', name: 'CUTOFF',
trim: false trim: false
) )
string( string(
defaultValue: 'rokoch', defaultValue: 'rokoch',
description: 'Kaggle username', description: 'Kaggle username',
name: 'KAGGLE_USERNAME', name: 'KAGGLE_USERNAME',
trim: false trim: false
) )
password( password(
defaultValue: '', defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
} }
stages { stages {
stage('checkout') { stage('checkout') {
steps { steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s426206/ium_426206.git']]]) checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s426206/ium_426206.git']]])
} }
} }
stage('docker') { stage('docker') {
agent { dockerfile true } steps {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}"]) { "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'ls -l' script {
sh 'chmod +x skrypt.sh' def img = docker.build('rokoch/ium:01')
sh './skrypt.sh 0' img.inside('-e KAGGLE_USERNAME=${params.KAGGLE_USERNAME} -e KAGGLE_KEY=${params.KAGGLE_KEY}') {}
}
} }
} }
} }
} }
} }