Skip to content

Commit

Permalink
ipam: Fix artifacts collecting (#1883)
Browse files Browse the repository at this point in the history
Due to actions/upload-artifact#602
Hidden folders are skipped.
We are using .output, so it was skipped and artifacts were not collected in case of an error.

Signed-off-by: Or Shoval <[email protected]>
  • Loading branch information
oshoval authored Sep 9, 2024
1 parent d13a070 commit 44a83fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kubevirt-ipam-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
if: failure()
with:
name: test-logs
path: ./test/e2e/.output/*.log
path: ./test/e2e/_output/*.log
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ whitespace-check
.vscode/

.output
_output
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -xeuE
# automation/check-patch.e2e-kubevirt-ipam-controller-functests.sh

GITHUB_ACTIONS=${GITHUB_ACTIONS:-false}
LOGS_DIR=test/e2e/.output
LOGS_DIR=test/e2e/_output
WORK_DIR=$(pwd)

teardown() {
Expand Down

0 comments on commit 44a83fa

Please sign in to comment.