ium_487187/JenkinsfileDVC

49 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-05-23 22:03:38 +02:00
pipeline {
agent any
tools {
2023-05-23 23:06:26 +02:00
git 'Default'
2023-05-23 22:03:38 +02:00
}
stages {
2023-05-23 23:12:16 +02:00
stage('Setup Git') {
steps {
sh """
2023-05-23 23:16:29 +02:00
git config user.email "jakzar3@st.amu.edu.pl"
git config user.name "s487187"
2023-05-23 23:12:16 +02:00
"""
}
}
2023-05-23 23:13:19 +02:00
2023-05-23 23:15:15 +02:00
stage('Install DVC') {
steps {
sh 'pip install dvc'
}
}
2023-05-23 23:06:26 +02:00
2023-05-23 22:03:38 +02:00
stage('Clone Repository') {
steps {
2023-05-23 23:07:58 +02:00
script {
try {
2023-05-23 23:17:16 +02:00
git url: 'https://git.wmi.amu.edu.pl/s487187/ium_487187'
2023-05-23 23:07:58 +02:00
} catch (Exception err) {
error "Failed to clone repository: ${err.message}"
}
2023-05-23 22:03:38 +02:00
}
}
}
stage('Pull DVC Files') {
steps {
sh 'dvc pull'
}
}
stage('Run DVC Pipeline') {
steps {
sh 'dvc reproduce'
}
}
}
}