24 lines
590 B
Groovy
24 lines
590 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 's434700:ium_s434700' }
|
|
}
|
|
stages {
|
|
stage('checkout: Check out from version control') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s434700/ium_s434700.git'
|
|
}
|
|
}
|
|
stage('sh: Shell Script') {
|
|
steps {
|
|
sh 'chmod +x download.sh'
|
|
sh './download.sh'
|
|
}
|
|
}
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
archiveArtifacts 'top.csv'
|
|
archiveArtifacts 'netflix_titles.csv'
|
|
}
|
|
}
|
|
}
|
|
} |