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:29:10 +01:00
|
|
|
echo "Checkout robiony deklaratywnie przez konfiguracje pipeline'u"
|
|
|
|
// 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:31:20 +01:00
|
|
|
sh "ls"
|
|
|
|
sh "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
|
|
|
}
|