Skip to content

Commit a26fb8e

Browse files
committed
fix main workflow
1 parent c6bf75d commit a26fb8e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
run: make ginkgo kind
115115

116116
- name: Run e2e tests
117-
run: make e2e
117+
run: make test-e2e
118118

119119
build:
120120
runs-on: ubuntu-22.04

tests/scripts/fluentd_e2e.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@ function start_fluent_operator() {
6767

6868
function run_test() {
6969
export ACK_GINKGO_RC=true
70-
"$GINKGO_BIN" -v "$E2E_DIR/e2e/fluentd/fluentd.test" -- "$debugflag"
71-
72-
if [[ $? != 0 ]]; then
70+
if ! "$GINKGO_BIN" -v "$E2E_DIR/e2e/fluentd/fluentd.test" -- "$debugflag"; then
7371
echo "Integration suite has failures, Please check !!"
7472
exit 1
7573
else

0 commit comments

Comments
 (0)