Jenkins with dockerhub
This commit is contained in:
parent
4e4ff38d94
commit
255e075b42
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@ -35,7 +35,8 @@ node {
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}",
|
||||
"CUTOFF=${params.CUTOFF}" ]) {
|
||||
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
|
||||
|
||||
sh "kaggle datasets download -d sohier/crime-in-baltimore"
|
||||
sh "unzip crime-in-baltimore.zip"
|
||||
sh 'python3 data.py'
|
||||
archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
|
||||
}
|
||||
|
@ -3,6 +3,8 @@ node {
|
||||
stage('checkout: Check out from version control') {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]])
|
||||
}
|
||||
stage(Docker build){
|
||||
docker.image('s487197/ium:1').inside {
|
||||
stage('copyArtifact') {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's487197-create-dataset', selector: lastSuccessful()
|
||||
}
|
||||
@ -10,6 +12,8 @@ node {
|
||||
sh 'chmod u+x ./stats.sh'
|
||||
sh './stats.sh'
|
||||
}
|
||||
|
||||
}
|
||||
stage('archiveArtifacts') {
|
||||
archiveArtifacts artifacts: 'stats.txt'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user