ium-helloworld/Jenkinsfile

48 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-05-26 21:26:06 +02:00
node {
2021-05-26 21:40:21 +02:00
def img
stage("Properties"){
properties([
2021-05-26 21:41:36 +02:00
pipelineTriggers([
pollSCM(''),
[$class: 'GogsTrigger']
])
2021-05-26 21:40:21 +02:00
])
}
stage("Checkout"){
git 'https://git.wmi.amu.edu.pl/tzietkiewicz/ium-helloworld.git'
}
stage('Environment') { // for display purposes
img = docker.build('ium-helloworld')
}
2021-06-04 15:11:57 +02:00
img.inside('-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns ') {
2021-05-26 21:40:21 +02:00
2022-04-10 13:51:38 +02:00
stage("Kaggle"){
withCredentials([usernamePassword(credentialsId: '53ff19bf-dbb7-4275-a609-634b57fe0627', passwordVariable: 'KAGGLE_KEY', usernameVariable: 'KAGGLE_USERNAME')]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'kaggle datasets list'
}
}
2021-06-07 00:05:54 +02:00
// stage('MLflow') {
// sh 'ls -l /tmp/mlruns'
// sh 'ls -l /mlruns'
// sh 'python3 ./train.py'
// sh 'ls -l /tmp/mlruns'
// sh 'ls -l /mlruns'
// }
2021-06-04 15:11:57 +02:00
stage("DVC"){
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {
2021-06-06 23:53:54 +02:00
sh 'ssh ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl -i $IUM_SFTP_KEY'
sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY'
2021-06-04 15:11:57 +02:00
sh "dvc pull"
}
}
2021-05-26 21:26:06 +02:00
}
}