Skip to content
Snippets Groups Projects
Unverified Commit d6d9040d authored by Yuki Okushi's avatar Yuki Okushi
Browse files

Make semver check workable

parent b6396caf
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,15 @@ if ! rustc --version | grep -E "nightly" ; then
exit 1
fi
# FIXME: Pin nightly version to make semverver compile.
NIGHTLY_DATE=nightly-2020-06-18
rustup override set ${NIGHTLY_DATE}
rustup component add rustc-dev llvm-tools-preview
# FIXME: Use upstream once it gets rustup.
cargo +nightly install semververfork
cargo +${NIGHTLY_DATE} install semververfork
TARGETS=
case "${OS}" in
......@@ -73,5 +78,5 @@ for TARGET in $TARGETS; do
done
# FIXME: Use upstream once it gets rustup.
cargo +nightly semverfork --api-guidelines --target="${TARGET}"
cargo +${NIGHTLY_DATE} semverfork --api-guidelines --target="${TARGET}"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment