Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #523 from mneverov/fix-e2e-logs-upload
Browse files Browse the repository at this point in the history
Fix artifacts directory path.
  • Loading branch information
k8s-ci-robot authored Aug 25, 2023
2 parents 6828e4e + 3f72e7d commit 7b47b3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: kind-junit-${{ env.JOB_NAME }}-${{ github.run_id }}
path: './hack/temp/e2e/artifacts/reports/*.xml'
path: './temp/e2e/artifacts/reports/*.xml'

- name: Upload logs
if: always()
Expand All @@ -87,4 +87,4 @@ jobs:
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: './hack/temp/e2e/artifacts/reports/*.xml'
report_paths: './temp/e2e/artifacts/reports/*.xml'
2 changes: 1 addition & 1 deletion hack/test_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ KUBECONFIG_TESTS="kubeconfig_tests.conf"
GINKGO_NUMBER_OF_NODES=25
GINKGO_FOCUS=${GINKGO_FOCUS:-"\[Conformance\]|\[sig-network\]"}
GINKGO_SKIP_TESTS="machinery|Feature|Federation|PerformanceDNS|Disruptive|Serial|LoadBalancer|KubeProxy|GCE|Netpol|NetworkPolicy"
GINKGO_REPORT_DIR="artifacts/reports"
GINKGO_REPORT_DIR="../artifacts/reports"
GINKGO_DUMP_LOGS_ON_FAILURE=false
GINKGO_DISABLE_LOG_DUMP=true
GINKGO_PROVIDER="local"
Expand Down

0 comments on commit 7b47b3f

Please sign in to comment.