blob: 7458a294a791edd8f41992e672256ec9c714408a [file] [log] [blame]
Jeremy Phelps08126d82018-08-07 11:08:48 -05001---
2- project:
3 name: oom
4 project-name: oom
5 project: oom
6 mvn-settings: oom-settings
Jeremy Phelps3cffa432018-08-15 16:26:12 -05007 mvn-global-settings: global-settings
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +01008 archive-artifacts: ""
Jessica Wagantall84782472020-03-18 13:15:20 -07009 build-node: ubuntu1804-helm-2c-1g
Jeremy Phelps08126d82018-08-07 11:08:48 -050010 pre_build_script: !include-raw-escape: shell/helm-repo-init.sh
Jeremy Phelps3cffa432018-08-15 16:26:12 -050011 oom_build_script: |
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010012 #!/bin/bash
Sylvain Desbureaux8a80b092021-02-17 13:49:17 +010013 source helm.prop
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010014 set -e -o pipefail
15 cd kubernetes/
Sylvain Desbureaux8a80b092021-02-17 13:49:17 +010016 make HELM_BIN=$HELM_BIN all
Jeremy Phelps3cffa432018-08-15 16:26:12 -050017 subproject_build_script: |
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010018 #!/bin/bash
19 cd kubernetes/
Sylvain Desbureaux8a80b092021-02-17 13:49:17 +010020 make HELM_BIN=$HELM_BIN common
21 make HELM_BIN=$HELM_BIN {subproject}
Jeremy Phelps3cffa432018-08-15 16:26:12 -050022
Jeremy Phelps08126d82018-08-07 11:08:48 -050023 stream:
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010024 - "master":
25 branch: "master"
Sylvain Desbureaux4655b062021-02-24 16:35:24 +010026 - "honolulu":
27 branch: "honolulu"
Jeremy Phelps08126d82018-08-07 11:08:48 -050028
Sylvain Desbureaux8a80b092021-02-17 13:49:17 +010029 helm_bin:
30 - helm3.5
31 - helm3.3
32
Sylvain Desbureaux4655b062021-02-24 16:35:24 +010033 exclude: []
34 subproject: []
35
Jeremy Phelps08126d82018-08-07 11:08:48 -050036 jobs:
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010037 - "{project-name}-{stream}-image-verify":
38 files: "**"
Sylvain Desbureaux8a80b092021-02-17 13:49:17 +010039 - "{project-name}-{stream}-verify-{helm_bin}":
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010040 build_script: "{oom_build_script}"
41 files: "**"
Sylvain Desbureauxd8bbd8b2021-06-09 08:46:59 +020042 build-timeout: 480
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010043 - "{project-name}-{stream}-merge-helm":
44 build_script: "{oom_build_script}"
Sylvain Desbureaux36dcc772021-06-17 22:21:44 +020045 post_build_script: !include-raw-escape: shell/publish_helm_charts.sh
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010046 files: "**"
Sylvain Desbureaux04c275f2021-06-11 08:47:16 +020047 build-timeout: 480
Jessica Wagantall019550b2020-12-21 12:24:30 -080048 - "{project-name}-{stream}-release-helm":
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010049 build_script: "{oom_build_script}"
Jeremy Phelps3cffa432018-08-15 16:26:12 -050050 post_build_script: !include-raw-escape: shell/publish_helm_charts.sh
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010051 files: "**"
Sylvain Desbureaux04c275f2021-06-11 08:47:16 +020052 build-timeout: 480
Jeremy Phelps3cffa432018-08-15 16:26:12 -050053
54 # Below jobs disabled until future need.
Sylvain Desbureaux5657eda2020-11-26 10:25:39 +010055 - "{project-name}-{subproject}-{stream}-verify-helm2":
56 build_script: "{subproject_build_script}"
57 - "{project-name}-{subproject}-{stream}-verify-helm":
58 build_script: "{subproject_build_script}"
59 - "{project-name}-{subproject}-{stream}-merge-helm":
60 build_script: "{subproject_build_script}"
61 - "{project-name}-{stream}-update-helm-weekly":
62 build_script: "{oom_build_script}"
63 files: "**"