You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi
26
25
- if [ -z "$NOHACK" ]; then curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-${HOST:-$TARGET}.tar.gz | tar xzf - -C ~/.cargo/bin; fi
27
-
- if [ -z "$NOHACK" ]; then $TOOL +$TOOLCHAIN hack $ZFLAGS check --target $TARGET --each-feature; fi
26
+
- if [ -z "$NOHACK" ]; then $TOOL hack $ZFLAGS check --target $TARGET --each-feature; fi
28
27
29
28
# Tests that do require executing the binaries
30
29
test: &TEST
31
30
<< : *BUILD
32
31
test_script:
33
32
- . $HOME/.cargo/env || true
34
-
- $TOOL +$TOOLCHAIN test --target $TARGET
33
+
- $TOOL test --target $TARGET
35
34
36
35
# Test FreeBSD in a full VM. Test the i686 target too, in the
37
36
# same VM. The binary will be built in 32-bit mode, but will execute on a
@@ -53,10 +52,10 @@ task:
53
52
setup_script:
54
53
- kldload mqueuefs
55
54
- fetch https://sh.rustup.rs -o rustup.sh
56
-
- sh rustup.sh -y --profile=minimal --default-toolchain $TOOLCHAIN
55
+
- sh rustup.sh -y --profile=minimal --default-toolchain $MSRV
0 commit comments