Bump 0.85.0 #50
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-feature-gated | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'release-*' | |
| - 'master' | |
| - 'main' | |
| tags: | |
| - 'v*' | |
| # To cancel running workflow when new commits pushed in a pull request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changed-files: | |
| uses: ./.github/workflows/changed-files.yaml | |
| e2e-tests: | |
| name: E2E tests for feature gates | |
| needs: changed-files | |
| if: ${{ needs.changed-files.outputs.non-markdown-files }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup E2E environment | |
| uses: ./.github/actions/setup-e2e # composite action with your setup steps | |
| - name: Run tests | |
| env: | |
| E2E_DIAGNOSTIC_DIRECTORY: ${{ env.E2E_DIAGNOSTIC_DIRECTORY }} | |
| run: | | |
| make test-e2e-feature-gates | |
| - name: Upload diagnostics artifact | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: cluster-state | |
| path: ${{ env.E2E_DIAGNOSTIC_DIRECTORY }} | |
| retention-days: 15 |