Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix suite path in e2e setup #656

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/e2e-long.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
e2e_import_gitops:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/import-gitops
test_suite: test/e2e/suites/import-gitops
test_name: Import via GitOps
run_azure_janitor: false
artifact_name: artifacts_import_gitops
Expand All @@ -20,7 +20,7 @@ jobs:
e2e_import_gitops_v3:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/import-gitops-v3
test_suite: test/e2e/suites/import-gitops-v3
test_name: Import via GitOps [v3]
run_azure_janitor: false
artifact_name: artifacts_import_gitops_v3
Expand All @@ -29,7 +29,7 @@ jobs:
e2e_v2prov:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/v2prov
test_suite: test/e2e/suites/v2prov
test_name: v2 provisioning
run_azure_janitor: true
artifact_name: artifacts_v2prov
Expand All @@ -38,7 +38,7 @@ jobs:
e2e_update_labels:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/update-labels
test_suite: test/e2e/suites/update-labels
test_name: Update labels
run_azure_janitor: true
artifact_name: artifacts_update_labels
Expand All @@ -47,7 +47,7 @@ jobs:
e2e_embedded_capi_disabled:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/embedded-capi-disabled
test_suite: test/e2e/suites/embedded-capi-disabled
test_name: Embedded CAPI disabled
run_azure_janitor: false
artifact_name: artifacts_embedded_capi
Expand All @@ -56,7 +56,7 @@ jobs:
e2e_embedded_capi_disabled_v3:
uses: ./.github/workflows/run-e2e-suite.yaml
with:
test_suite: $(pwd)/test/e2e/suites/embedded-capi-disabled-v3
test_suite: test/e2e/suites/embedded-capi-disabled-v3
test_name: Embedded CAPI disabled [v3]
run_azure_janitor: false
artifact_name: artifacts_embedded_capi_v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-e2e-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ env:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
MANAGEMENT_CLUSTER_INFRASTRUCTURE: ${{ inputs.management_cluster_infrastructure }}
GINKGO_LABEL_FILTER: full
GINKGO_TESTS: ${{ inputs.test_suite }}
GINKGO_TESTS: ${{ github.workspace }}/${{ inputs.test_suite }}

jobs:
run_e2e_tests:
Expand Down
Loading