Test - Chart Version Nightly #381
This file contains hidden or 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
| # Basic test for maintenance Camunda 8 Helm charts. | |
| name: "Test - Chart Version Nightly" | |
| on: | |
| schedule: | |
| # Set the cron schedule to run nightly at midnight US time, EST (4AM UTC) | |
| - cron: "0 4 * * *" | |
| push: | |
| branches: | |
| - "feature/ee-images-prem" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| id-token: write | |
| deployments: write | |
| jobs: | |
| init: | |
| name: Generate chart matrix Nightly | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.generate-chart-versions.outputs.matrix }} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| with: | |
| repository: camunda/camunda-platform-helm | |
| - name: Generate chart versions | |
| id: generate-chart-versions | |
| uses: ./.github/actions/generate-chart-matrix-nightly | |
| test: | |
| if: ${{ needs.init.outputs.matrix != '[]' }} | |
| name: Camunda ${{ matrix.version }} | |
| needs: init | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{ fromJson(needs.init.outputs.matrix) }} | |
| uses: ./.github/workflows/test-chart-version-nightly-template.yaml | |
| secrets: inherit | |
| with: | |
| camunda-version: ${{ matrix.version }} | |
| case: ${{ matrix.case }} | |
| scenario: ${{ matrix.scenario }} | |
| auth: ${{ matrix.auth }} | |
| exclude: ${{ matrix.exclude }} | |
| values-enterprise: ${{ matrix.values-enterprise }} |