OPSEXP-2991 Bump sync-service chart with ingress fix #1448
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Helm static checks | |
on: | |
pull_request: | |
branches: | |
- master | |
- release/** | |
- next/** | |
paths: | |
- helm/** | |
- test/postman/helm/** | |
- .github/workflows/helm* | |
push: | |
branches: | |
- master | |
- release/** | |
jobs: | |
build_vars: | |
runs-on: ubuntu-latest | |
outputs: | |
app_charts: ${{ steps.getcharts.outputs.app }} | |
lib_charts: ${{ steps.getcharts.outputs.lib }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 2 | |
- id: getcharts | |
uses: >- | |
./.github/actions/charts-as-json | |
with: | |
charts-root: helm | |
helm_unit_test: | |
needs: | |
- build_vars | |
strategy: | |
matrix: ${{ fromJSON(needs.build_vars.outputs.app_charts) }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: >- | |
Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@v8.4.0 | |
with: | |
chart-dir: helm/${{ matrix.charts.name }} | |
- uses: >- | |
Alfresco/alfresco-build-tools/.github/actions/helm-plugin@v8.4.0 | |
with: | |
plugin_url: https://github.com/helm-unittest/helm-unittest | |
- name: Run Helm unit tests if present | |
run: | | |
if [ -d "helm/${{ matrix.charts.name }}/tests" ]; then helm unittest helm/${{ matrix.charts.name }} | |
else echo "${{ matrix.charts.name }} chart has no unit tests... skipping." | |
fi | |
helm_yaml_lint: | |
needs: | |
- build_vars | |
strategy: | |
matrix: ${{ fromJSON(needs.build_vars.outputs.app_charts) }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: >- | |
Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@v8.4.0 | |
with: | |
chart-dir: helm/${{ matrix.charts.name }} | |
- uses: >- | |
Alfresco/alfresco-build-tools/.github/actions/helm-template-yamllint@v8.4.0 | |
with: | |
chart-dir: helm/${{ matrix.charts.name }} | |
helm-options: >- | |
--set global.search.sharedSecret=dummy | |
--set global.search.alfrescoRegistryPullSecrets=dummy |