summaryrefslogtreecommitdiffstats
path: root/jjb/aai
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2019-04-08 16:35:10 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2019-04-17 19:27:08 +0000
commitabff9c06663aa57e4e078d36595498c8c606e5a7 (patch)
tree5c506dd77f9a54e7d01f65d6caef24e26c4e65d9 /jjb/aai
parentece16fe775a8c152961e58b2ec24d2f23a175277 (diff)
Add external verify job for HELM
This new verify job will: - Apply to code transfered outside OOM repo into the tech team's repos. - Get triggered by any submitted changes in <component>/oom repos. - Apply the change in oom/kubernetes/<component> - Run a helm verify Change-Id: I4bd60f946351623583589d7689343fbfc826237a Issue-ID: CIMAN-250 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Diffstat (limited to 'jjb/aai')
-rw-r--r--jjb/aai/aai-oom.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/jjb/aai/aai-oom.yaml b/jjb/aai/aai-oom.yaml
new file mode 100644
index 000000000..7581e773b
--- /dev/null
+++ b/jjb/aai/aai-oom.yaml
@@ -0,0 +1,36 @@
+---
+- project:
+ name: aai-oom-project-view
+ project-name: aai-oom
+ views:
+ - project-view
+
+- project:
+ name: aai-oom
+ helm-module: 'aai'
+ project-name: 'aai-oom'
+ project: 'aai/oom'
+ jobs:
+ - '{project-name}-{stream}-verify-external-helm'
+ stream:
+ - 'master':
+ branch: 'master'
+ mvn-settings: 'aai-oom-settings'
+ files: '**'
+ archive-artifacts: ''
+ build-node: ubuntu1604-helm-2c-1g
+ pre_build_script: !include-raw-escape: shell/helm-repo-init.sh
+ oom_build_script: |
+ #!/bin/bash
+ set -e -o pipefail
+ cd kubernetes/
+ make all
+ subproject_build_script: |
+ #!/bin/bash
+ cd kubernetes/
+ make common
+ make {subproject}
+ oom_post_build_script: !include-raw-escape: shell/publish_helm_charts.sh
+ subproject:
+ - 'aai':
+ files: 'kubernetes/aai/**'