chore: Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.42.0 to 1.43.0 #12
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 End-to-end tests" | |
| # Path-filtered on purpose: documentation-only changes must not spend a | |
| # Kind cluster with a full Tekton install. If e2e-tests-check ever becomes | |
| # a required branch-protection check, drop the filters - a path-skipped | |
| # required check blocks merging forever. | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '**/*.go' | |
| - 'go.mod' | |
| - 'go.sum' | |
| - 'Dockerfile' | |
| - 'Makefile' | |
| - 'deploy-templates/**' | |
| - 'tests/e2e/chainsaw/**' | |
| - '.github/workflows/e2e.yaml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '**/*.go' | |
| - 'go.mod' | |
| - 'go.sum' | |
| - 'Dockerfile' | |
| - 'Makefile' | |
| - 'deploy-templates/**' | |
| - 'tests/e2e/chainsaw/**' | |
| - '.github/workflows/e2e.yaml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e-tests: | |
| name: End-to-end tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # All Kubernetes versions in between expose the same APIs the | |
| # operator relies on, so a single current version is sufficient. | |
| kube-version: | |
| - "1.34" | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run e2e tests | |
| run: make test-e2e | |
| - name: Delete Kind cluster | |
| if: always() | |
| run: make cleanup-test-e2e | |
| e2e-tests-check: | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: [e2e-tests] | |
| steps: | |
| - name: Print result | |
| run: echo ${{ needs.e2e-tests.result }} | |
| - name: Interpret result | |
| run: | | |
| if [[ success == ${{ needs.e2e-tests.result }} ]] | |
| then | |
| echo "All matrix jobs passed!" | |
| else | |
| echo "One or more matrix jobs failed." | |
| false | |
| fi |