From 98d73da47bfb539dee4e97d86c4980abc8336d2d Mon Sep 17 00:00:00 2001 From: Olu Shiyanbade Date: Wed, 8 Nov 2023 12:09:42 +0000 Subject: [PATCH] don't build orient chart --- Jenkinsfile-Release | 2 -- build.sh | 3 --- 2 files changed, 5 deletions(-) diff --git a/Jenkinsfile-Release b/Jenkinsfile-Release index 139172e..e893d29 100644 --- a/Jenkinsfile-Release +++ b/Jenkinsfile-Release @@ -42,11 +42,9 @@ dockerizedBuildPipeline( buildAndTest: { sonatypeZionGitConfig() runSafely "git checkout ${gitBranch(env)}" - runSafely "./upgrade.sh ./nexus-repository-manager ${chartVersion} ${params.appVersion}" runSafely "./upgrade.sh ./nxrm-aws-resiliency ${chartVersion} ${params.appVersion}" runSafely './build.sh' runSafely 'git add nxrm-aws-resiliency' - runSafely 'git add nexus-repository-manager' }, skipVulnerabilityScan: true, archiveArtifacts: 'docs/*', diff --git a/build.sh b/build.sh index a5bc1a9..5784006 100755 --- a/build.sh +++ b/build.sh @@ -18,12 +18,9 @@ set -e # lint yaml of charts helm lint ./nxrm-aws-resiliency -helm lint ./nexus-repository-manager # unit test (cd ./nxrm-aws-resiliency; helm unittest -3 -t junit -o test-output.xml .) -(cd ./nexus-repository-manager; helm unittest -3 -t junit -o test-output.xml .) # package the charts into tgz archives helm package ./nxrm-aws-resiliency --destination docs -helm package ./nexus-repository-manager --destination docs