26 lines
632 B
Groovy
26 lines
632 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
parameters{
|
|
string(
|
|
defaultValue: 'maciejsobkowiak',
|
|
description: 'Kaggle username',
|
|
name: 'username',
|
|
trim: false
|
|
)
|
|
}
|
|
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s434784/ium_434784'
|
|
}
|
|
}
|
|
stage('sh: Shell Script') {
|
|
steps {
|
|
sh 'chmod +x preparations.sh'
|
|
sh './preparations.sh'
|
|
}
|
|
}
|
|
}
|
|
} |