ium_s434700/Jenkinsfile
2021-03-27 17:31:51 +01:00

22 lines
539 B
Groovy

pipeline {
agent any
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'
}
}
}
}