From 3fb4ef80aaffa470c4401b38f47bfce2f402f10e Mon Sep 17 00:00:00 2001 From: Paul Stone Date: Wed, 29 Jan 2025 14:27:37 +0000 Subject: [PATCH 1/2] [patch] include cpd service installation flags in install pipeline run --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 4ad87f44..b277e3c7 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -278,6 +278,12 @@ spec: value: "{{ cpd_install_openscale }}" - name: cpd_install_cognos value: "{{ cpd_install_cognos }}" + - name: cpd_install_ws + value: "{{ cpd_install_ws }}" + - name: cpd_install_wml + value: "{{ cpd_install_wml }}" + - name: cpd_install_ae + value: "{{ cpd_install_ae }}" {%- endif %} # Dependencies - SLS From a498680670070815a58f30f8200028170ada920c Mon Sep 17 00:00:00 2001 From: Paul Stone Date: Thu, 30 Jan 2025 15:17:25 +0000 Subject: [PATCH 2/2] [patch] include instructions to build locally --- CONTRIBUTING.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 64fe0d49..5f4c48a9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,3 +38,15 @@ Manually run the pre-commit hooks against all files ```bash pre-commit run -a ``` + +Building locally +------------------------------------------------------------------------------- +Clone the python-devops repository locally. From the top level directory, run +``` +make install build +``` + +NOTE: if building on MacOS you will need to first install pandoc: +``` +brew install pandoc +``` \ No newline at end of file