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}",
|
"KAGGLE_KEY=${params.KAGGLE_KEY}",
|
||||||
"CUTOFF=${params.CUTOFF}" ]) {
|
"CUTOFF=${params.CUTOFF}" ]) {
|
||||||
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
|
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'
|
sh 'python3 data.py'
|
||||||
archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
|
archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
|
||||||
}
|
}
|
||||||
|
@ -3,12 +3,16 @@ node {
|
|||||||
stage('checkout: Check out from version control') {
|
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']]])
|
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') {
|
stage('copyArtifact') {
|
||||||
copyArtifacts fingerprintArtifacts: true, projectName: 's487197-create-dataset', selector: lastSuccessful()
|
copyArtifacts fingerprintArtifacts: true, projectName: 's487197-create-dataset', selector: lastSuccessful()
|
||||||
}
|
}
|
||||||
stage('Shell Script') {
|
stage('Shell Script') {
|
||||||
sh 'chmod u+x ./stats.sh'
|
sh 'chmod u+x ./stats.sh'
|
||||||
sh './stats.sh'
|
sh './stats.sh'
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
stage('archiveArtifacts') {
|
stage('archiveArtifacts') {
|
||||||
archiveArtifacts artifacts: 'stats.txt'
|
archiveArtifacts artifacts: 'stats.txt'
|
||||||
|
Loading…
Reference in New Issue
Block a user