Skip to content

Commit

Permalink
chore: disable publication from ci.jenkins.io (#351)
Browse files Browse the repository at this point in the history
* chore: disable publication from ci.jenkins.io

* fix: remove `updatecli` from pipelines
  • Loading branch information
lemeurherve committed Feb 10, 2024
1 parent 42a7fe0 commit 41600a8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Jenkinsfile
@@ -1,3 +1,5 @@
@Library('pipeline-library@pull/784/head') _

pipeline {
agent {
label 'jdk17'
Expand Down Expand Up @@ -28,7 +30,12 @@ pipeline {
}
stage('Docker image') {
steps {
parallelDockerUpdatecli([imageName: 'account-app', rebuildImageOnPeriodicJob: false, buildDockerConfig: [targetplatforms: 'linux/amd64,linux/arm64']])
buildDockerAndPublishImage('account-app', [
rebuildImageOnPeriodicJob: false,
automaticSemanticVersioning: true,
targetplatforms: 'linux/amd64,linux/arm64',
disablePublication: true
])
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion Jenkinsfile_k8s
@@ -1 +1,5 @@
parallelDockerUpdatecli([imageName: 'account-app', rebuildImageOnPeriodicJob: false, buildDockerConfig: [targetplatforms: 'linux/amd64,linux/arm64']])
buildDockerAndPublishImage('account-app', [
rebuildImageOnPeriodicJob: false,
automaticSemanticVersioning: true,
targetplatforms: 'linux/amd64,linux/arm64'
])

0 comments on commit 41600a8

Please sign in to comment.