We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab2c00 commit 411cbccCopy full SHA for 411cbcc
ci/run.sh
@@ -33,6 +33,11 @@ case "${TRAVIS_OS_NAME}" in
33
;;
34
esac
35
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
+
41
# install
42
mkdir -p ~/rust/cargo/bin
43
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
59
64
exit 1
60
65
fi
61
66
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
63
68
0 commit comments