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:32:54 +01:00
|
|
|
echo "Zawartość folderu:"
|
|
|
|
sh "ls"
|
2024-03-24 17:21:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('sh: Shell Script') {
|
|
|
|
steps {
|
2024-03-24 17:37:53 +01:00
|
|
|
sh "chmod +x -R ${env.WORKSPACE}"
|
2024-03-24 17:36:21 +01:00
|
|
|
sh "./dataset_download.sh"
|
2024-03-24 17:02:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-20 14:28:52 +01:00
|
|
|
}
|