Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JorTurFer authored Jul 30, 2024
1 parent 00baf28 commit b88d5a8
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: pr-e2e-tests
on:
pull_request: {}

env:
E2E_CHECK_NAME: e2e tests

jobs:
run-test:
runs-on: equinix-keda-runner
name: Execute e2e tests
container: ghcr.io/kedacore/keda-tools:1.21.9
steps:
- uses: oNaiPs/secrets-to-env-action@v1
with:
secrets: ${{ toJSON(secrets) }}

- name: Run end to end tests
continue-on-error: true
id: test
env:
AWS_RUN_IDENTITY_TESTS: true
AZURE_RUN_WORKLOAD_IDENTITY_TESTS: true
GCP_RUN_IDENTITY_TESTS: true
ENABLE_OPENTELEMETRY: true
TEST_CLUSTER_NAME: keda-e2e-cluster-pr
run: |
make get-cluster-context
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

- name: Run end to end tests
continue-on-error: true
id: test
env:
AWS_RUN_IDENTITY_TESTS: true
AZURE_RUN_WORKLOAD_IDENTITY_TESTS: true
GCP_RUN_IDENTITY_TESTS: true
ENABLE_OPENTELEMETRY: true
TEST_CLUSTER_NAME: keda-e2e-cluster-pr
run: |
make e2e-test

0 comments on commit b88d5a8

Please sign in to comment.