ium_434784/Jenkinsfile

26 lines
632 B
Plaintext
Raw Normal View History

2021-03-28 22:19:38 +02:00
pipeline {
agent any
2021-03-28 23:14:31 +02:00
2021-03-28 23:15:28 +02:00
parameters{
2021-03-28 23:06:58 +02:00
string(
2021-03-28 23:55:35 +02:00
defaultValue: 'maciejsobkowiak',
2021-03-28 23:06:58 +02:00
description: 'Kaggle username',
2021-03-29 00:11:59 +02:00
name: 'username',
2021-03-28 23:06:58 +02:00
trim: false
2021-03-28 23:16:32 +02:00
)
2021-03-28 23:15:28 +02:00
}
2021-03-28 23:14:31 +02:00
stages {
2021-03-28 22:28:55 +02:00
stage('checkout: Check out from version control') {
2021-03-28 22:19:38 +02:00
steps {
2021-03-29 00:57:26 +02:00
git 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
2021-03-28 22:19:38 +02:00
}
}
2021-03-28 22:41:59 +02:00
stage('sh: Shell Script') {
steps {
2021-03-29 01:04:09 +02:00
sh 'chmod +x preparations.sh'
sh './preparations.sh'
2021-03-28 22:41:59 +02:00
}
}
2021-03-28 22:19:38 +02:00
}
}