ium_452487/Jenkinsfile

19 lines
479 B
Plaintext
Raw Normal View History

2024-03-24 17:02:18 +01:00
pipeline {
agent any
stages {
2024-03-24 17:21:25 +01:00
stage('checkout: Check out from version control') {
2024-03-24 17:02:18 +01:00
steps {
2024-03-24 17:06:03 +01:00
echo 'username_visibility_test2: ${kaggle_username}'
2024-03-24 17:02:18 +01:00
echo 'password_visibility_test2: ${kaggle_password}'
2024-03-24 17:21:25 +01:00
2024-03-24 17:22:57 +01:00
sh "git clone https://git.wmi.amu.edu.pl/s452487/ium_452487.git"
2024-03-24 17:21:25 +01:00
}
}
stage('sh: Shell Script') {
steps {
2024-03-24 17:24:06 +01:00
cd "ium_452487"
2024-03-24 17:22:57 +01:00
sh "dataset_download.sh"
2024-03-24 17:02:18 +01:00
}
}
}
2024-03-20 14:28:52 +01:00
}