E2E: refactor Turtles chart-upgrade tests for system chart controller migration #6034
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: Run short e2e tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| MANAGEMENT_CLUSTER_ENVIRONMENT: "isolated-kind" | |
| GINKGO_LABEL_FILTER: "short" | |
| TAG: v0.0.1 | |
| SOURCE_REPO: https://github.com/${{ github.event.pull_request.head.repo.full_name }} | |
| TURTLES_PROVIDERS: "docker,kubeadm" | |
| jobs: | |
| e2e: | |
| runs-on: runs-on,runner=4cpu-linux-x64,run-id=${{ github.run_id }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: setupGo | |
| uses: actions/[email protected] | |
| with: | |
| go-version-file: go.mod | |
| - name: Display kind version | |
| run: kind version | |
| - name: Display docker version | |
| run: docker version | |
| - name: Run e2e tests | |
| run: make test-e2e | |
| - name: Collect run artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: artifacts | |
| path: _artifacts |