Zaktualizuj 'jenkinsfile'

run script
This commit is contained in:
Julian Zabłoński 2022-03-27 18:31:51 +02:00
parent 99799b85f0
commit a760876bdc

View File

@ -12,15 +12,10 @@ pipeline {
sh "git branch -a" sh "git branch -a"
// Checkout to a specific branch in your repo. // Checkout to a specific branch in your repo.
sh "git checkout master" sh "git checkout master"
sh "curl -o adult-income-dataset.csv https://git.wmi.amu.edu.pl/s478831/ium_478831/src/commit/afaecaa22f5e6f24e43aab1e4155c8d033582d3e/adult-income-dataset.csv" sh "chmod u+x ./script2.sh"
} }
} }
post {
always {
archiveArtifacts artifacts: 'adult-income-dataset.csv', onlyIfSuccessful: true
}
}
} }
} }
} }