Skip to content

Commit bbfcd2c

Browse files
committed
Remove override for CI test status
1 parent c9279b6 commit bbfcd2c

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/curl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,6 @@ jobs:
143143
144144
# Run tests and save output to test.log
145145
mkdir -p tests
146-
make -j$(nproc) test-ci 2>&1 | tee tests/test.log || true
146+
make -j$(nproc) test-ci 2>&1 | tee tests/test.log
147147
TEST_RESULT=$?
148148
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} curl

.github/workflows/net-snmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,6 @@ jobs:
134134
export ${{ matrix.force_fail }}
135135
autoconf --version | grep -P '2\.\d\d' -o > dist/autoconf-version
136136
mkdir -p tests
137-
make -j test TESTOPTS="-e agentxperl" | tee tests/test.log || true
137+
make -j test TESTOPTS="-e agentxperl" | tee tests/test.log
138138
TEST_RESULT=$?
139139
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} net-snmp

.github/workflows/nginx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,6 @@ jobs:
142142
export ${{ matrix.force_fail }}
143143
144144
# Run tests and save result
145-
TEST_NGINX_VERBOSE=y TEST_NGINX_CATLOG=y TEST_NGINX_BINARY=../nginx/objs/nginx prove -v . 2>&1 | tee nginx-test.log || true
145+
TEST_NGINX_VERBOSE=y TEST_NGINX_CATLOG=y TEST_NGINX_BINARY=../nginx/objs/nginx prove -v . 2>&1 | tee nginx-test.log
146146
TEST_RESULT=$?
147147
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} nginx

.github/workflows/openssh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,6 @@ jobs:
145145
146146
# Run all the tests except (t-exec) as it takes too long
147147
export ${{ matrix.force_fail }}
148-
make file-tests interop-tests extra-tests unit 2>&1 | tee openssh-test.log || true
148+
make file-tests interop-tests extra-tests unit 2>&1 | tee openssh-test.log
149149
TEST_RESULT=$?
150150
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} openssh

.github/workflows/openvpn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,6 @@ jobs:
134134
export ${{ matrix.force_fail }}
135135
136136
# Run tests and save result
137-
make check 2>&1 | tee openvpn-test.log || true
137+
make check 2>&1 | tee openvpn-test.log
138138
TEST_RESULT=$?
139139
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} openvpn

.github/workflows/sssd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ jobs:
107107
export ${{ matrix.force_fail }}
108108
109109
# Run tests and save result
110-
make check 2>&1 | tee sssd-test.log || true
110+
make check 2>&1 | tee sssd-test.log
111111
TEST_RESULT=$?
112112
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} sssd

.github/workflows/stunnel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@ jobs:
148148
149149
# Run tests and capture output
150150
mkdir -p $GITHUB_WORKSPACE/tests
151-
make check 2>&1 | tee $GITHUB_WORKSPACE/tests/stunnel-test.log || true
151+
make check 2>&1 | tee $GITHUB_WORKSPACE/tests/stunnel-test.log
152152
TEST_RESULT=$?
153153
$GITHUB_WORKSPACE/.github/scripts/check-workflow-result.sh $TEST_RESULT ${{ matrix.force_fail }} stunnel

0 commit comments

Comments
 (0)