Skip to content

Commit

Permalink
[HWORKS-1555] Add Jenkins pipeline for building sklearnserver img (lo…
Browse files Browse the repository at this point in the history
  • Loading branch information
javierdlrm committed Oct 24, 2024
1 parent d4fab9a commit ab93d74
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
@Library("jenkins-library@main")

import com.logicalclocks.jenkins.k8s.ImageBuilder

properties([
parameters([
choice(name: 'image', choices: ['all', 'sklearnserver'], description: 'Which docker image to build'),
choice(name: 'branch', choices: ['', 'master', 'release-0.11.2'], description: 'Which branch to build'),
])
])

node("local") {
stage('Clone repository') {
if (params.branch == '' || params.branch == 'master'){
checkout scm
} else {
sshagent (credentials: ['id_rsa']) {
sh """
git fetch --all
git checkout ${params.branch}
git pull
"""
}
}
}

stage('Build and push image(s)') {
version = readFile "${env.WORKSPACE}/VERSION"
withEnv(["VERSION=${version.trim()}"]) {

if(params.image == 'all' || params.image == 'sklearnserver'){

def builder = new ImageBuilder(this)
m = readFile "${env.WORKSPACE}/python/sklearn-build-manifest.json"
builder.run(m)
}
}
}
}
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.0.0
7 changes: 7 additions & 0 deletions python/sklearn-build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"name": "hopsworks/sklearnserver",
"version": "env:VERSION",
"dockerFile": "python/sklearn.Dockerfile"
}
]

0 comments on commit ab93d74

Please sign in to comment.