Skip to content

Commit 9622369

Browse files
committed
Fix loss of CRI test failure status in CI
Prior PR fixed the wrong use of `exit` built-in within a Travis script, but lost the reporting of a failure result of CRI testing in the process. Signed-off-by: Phil Estes <[email protected]>
1 parent efb04a3 commit 9622369

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ script:
7474
sudo PATH=$PATH containerd -log-level debug &> /tmp/containerd-cri.log &
7575
sudo ctr version ;
7676
sudo PATH=$PATH GOPATH=$GOPATH critest --runtime-endpoint=/var/run/containerd/containerd.sock --parallel=8 ;
77-
test $? -ne 0 && cat /tmp/containerd-cri.log ;
77+
TEST_RC=$? ;
78+
test $TEST_RC -ne 0 && cat /tmp/containerd-cri.log ;
7879
sudo pkill containerd ;
80+
test $TEST_RC -eq 0 || /bin/false ;
7981
fi
8082

8183
after_success:

0 commit comments

Comments
 (0)