fix: refs #7643 Update debuild image
gitea/hedera-web/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2024-07-04 11:51:48 +02:00
parent ff63cd11c3
commit 921b029b06
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
}
agent {
docker {
image 'registry.verdnatura.es/debuild:2.23.4-vn1'
image 'registry.verdnatura.es/debuild:2.23.4-vn2'
registryUrl 'https://registry.verdnatura.es/'
registryCredentialsId 'docker-registry'
}
@ -77,7 +77,7 @@ pipeline {
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = packageJson.version
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel'
@ -94,7 +94,7 @@ pipeline {
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = packageJson.version
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
withKubeConfig([
serverUrl: "$KUBERNETES_API",