diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-08-13 16:24:37 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-08-13 16:24:46 -0700 |
commit | 73c70addef1530b8a70b64f133aa77e4cb435f86 (patch) | |
tree | a172a26aeabbfc2e89c4f70d0de02b351f55380e /jjb | |
parent | e06a09c55eab7391e925738e1e6769a85c0ea08f (diff) |
Add make common step before making subprojects
Add make common step before calling make subproject
make subproject currently fails because common charts
cannot be downloaded.
Issue-ID: CIMAN-191
Change-Id: Ief4db7e6e26e4f6b004506628a74b92e657121fc
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/oom/oom-helm.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/oom/oom-helm.yaml b/jjb/oom/oom-helm.yaml index 003a74335..11a9ac337 100644 --- a/jjb/oom/oom-helm.yaml +++ b/jjb/oom/oom-helm.yaml @@ -75,9 +75,9 @@ build_script: 'cd kubernetes/ && make all' files: '**' - '{project-name}-{subproject}-{stream}-verify-helm': - build_script: 'cd kubernetes/ && make {subproject}' + build_script: 'cd kubernetes/ && make common && make {subproject}' - '{project-name}-{subproject}-{stream}-merge-helm': - build_script: 'cd kubernetes/ && make {subproject}' + build_script: 'cd kubernetes/ && make common && make {subproject}' - '{project-name}-{stream}-update-helm-weekly': files: '**' build_script: 'cd kubernetes/ && make all' |