ium_452487/Jenkinsfile
2024-03-24 17:24:06 +01:00

19 lines
479 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
echo 'username_visibility_test2: ${kaggle_username}'
echo 'password_visibility_test2: ${kaggle_password}'
sh "git clone https://git.wmi.amu.edu.pl/s452487/ium_452487.git"
}
}
stage('sh: Shell Script') {
steps {
cd "ium_452487"
sh "dataset_download.sh"
}
}
}
}