Skip to content

Commit 7012725

Browse files
committed
Revert "Remove testing from script/cibuild"
This reverts commit 90477b5.
1 parent 4c8e4cf commit 7012725

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

script/cibuild

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ set -e
55
# Enable verbose logging of ssh commands
66
export GHE_VERBOSE_SSH=true
77

8+
res=true
9+
version=2.21.0
10+
echo "==> Running test suite with GHE_TEST_REMOTE_VERSION=$version"
11+
export GHE_TEST_REMOTE_VERSION="$version"
12+
if ! find test -name "test-*.sh" -print0 | xargs -0 -P 4 -n 1 /bin/bash; then
13+
res=false
14+
fi
15+
echo
16+
17+
# If any of the tests above failed, exit non-zero
18+
$res
19+
820
# Bail out when --no-package given
921
[ "$1" = "--no-package" ] && exit 0
1022

0 commit comments

Comments
 (0)