Skip to content

Commit 411cbcc

Browse files
committed
Skip installing semverver on Windows CI
1 parent eab2c00 commit 411cbcc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ci/run.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ case "${TRAVIS_OS_NAME}" in
3333
;;
3434
esac
3535

36+
# FIXME: Somehow we couldn't install semverver on Travis' Windows builder.
37+
if [ "${TRAVIS_OS_NAME}" = "windows" ]; then
38+
exit 0
39+
fi
40+
3641
# install
3742
mkdir -p ~/rust/cargo/bin
3843
cp target/debug/cargo-semver ~/rust/cargo/bin
@@ -59,5 +64,5 @@ if cargo install --root "$(mktemp -d)" semverver > /dev/null 2>/dev/null; then
5964
exit 1
6065
fi
6166
else
62-
echo 'Failed to check semver-compliance of semverver. Failed to compiled previous version.' >&2
67+
echo 'Failed to check semver-compliance of semverver. Failed to compiled previous version.' >&2
6368
fi

0 commit comments

Comments
 (0)