This commit is contained in:
Jakub Zaręba 2023-05-23 23:06:26 +02:00
parent f13b472bf8
commit 5e33e7a618

View File

@ -2,10 +2,16 @@ pipeline {
agent any agent any
tools { tools {
git 'default' git 'Default'
} }
stages { stages {
stage('Install DVC') {
steps {
sh 'pip install dvc'
}
}
stage('Clone Repository') { stage('Clone Repository') {
steps { steps {
try { try {