Bump chart version to v0.26.0 #1721
Workflow file for this run
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
| name: E2E CI | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ["v*"] | |
| pull_request: | |
| types: [opened, synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| env: | |
| cache-version: 1 | |
| # CI tests with supported MySQL version. | |
| jobs: | |
| dbtest: | |
| name: Integration tests with MySQL | |
| permissions: | |
| contents: read | |
| pull-requests: read # Required for tj-actions/changed-files | |
| strategy: | |
| matrix: | |
| mysql-version: ["8.0.28", "8.0.43", "8.0.44", "8.0.45", "8.4.4", "8.4.8"] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check and output changed files | |
| uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5 | |
| id: changed-files | |
| with: | |
| files_ignore: | | |
| **/*.md | |
| containers/** | |
| - uses: ./.github/actions/dbtest | |
| with: | |
| mysql-version: ${{ matrix.mysql-version }} | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| e2e: | |
| name: Supported Kubernetes versions End-to-End Tests | |
| permissions: | |
| contents: read | |
| pull-requests: read # Required for tj-actions/changed-files | |
| strategy: | |
| matrix: | |
| mysql-version: ["8.4.8"] | |
| k8s-version: ["1.33.7", "1.34.3", "1.35.4"] | |
| runs-on: | |
| group: moco | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check and output changed files | |
| uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5 | |
| id: changed-files | |
| with: | |
| files_ignore: | | |
| **/*.md | |
| containers/** | |
| - uses: ./.github/actions/e2e | |
| with: | |
| k8s-version: ${{ matrix.k8s-version }} | |
| mysql-version: ${{ matrix.mysql-version }} | |
| name: k8s-version-e2e | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| e2e-mysql: | |
| name: Supported MySQL versions End-to-End Tests | |
| permissions: | |
| contents: read | |
| pull-requests: read # Required for tj-actions/changed-files | |
| strategy: | |
| matrix: | |
| mysql-version: ["8.0.28", "8.0.43", "8.0.44", "8.0.45", "8.4.4", "8.4.8"] | |
| k8s-version: ["1.35.4"] | |
| runs-on: | |
| group: moco | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check and output changed files | |
| uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5 | |
| id: changed-files | |
| with: | |
| files_ignore: | | |
| **/*.md | |
| containers/** | |
| - uses: ./.github/actions/e2e | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| with: | |
| k8s-version: ${{ matrix.k8s-version }} | |
| mysql-version: ${{ matrix.mysql-version }} | |
| name: mysql-version-e2e | |
| upgrade: | |
| name: Upgrade Test | |
| permissions: | |
| contents: read | |
| pull-requests: read # Required for tj-actions/changed-files | |
| runs-on: | |
| group: moco | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check and output changed files | |
| uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v47.0.5 | |
| id: changed-files | |
| with: | |
| files_ignore: | | |
| **/*.md | |
| containers/** | |
| - uses: ./.github/actions/upgrade | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| finish-e2e: | |
| name: Confirm finishing all tests | |
| runs-on: ubuntu-22.04 | |
| needs: | |
| - dbtest | |
| - e2e | |
| - e2e-mysql | |
| - upgrade | |
| steps: | |
| - run: echo "OK" |