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
25
24
- 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
26
-
- if [ -z "$NOHACK" ]; then $TOOL +$TOOLCHAIN hack $ZFLAGS check --target $TARGET --each-feature; fi
25
+
- if [ -z "$NOHACK" ]; then $TOOL hack $ZFLAGS check --target $TARGET --each-feature; fi
27
26
28
27
# Tests that do require executing the binaries
29
28
test: &TEST
30
29
<< : *BUILD
31
30
test_script:
32
31
- . $HOME/.cargo/env || true
33
-
- $TOOL +$TOOLCHAIN test --target $TARGET
32
+
- $TOOL test --target $TARGET
34
33
35
34
# Test FreeBSD in a full VM. Test the i686 target too, in the
36
35
# same VM. The binary will be built in 32-bit mode, but will execute on a
@@ -52,10 +51,10 @@ task:
52
51
setup_script:
53
52
- kldload mqueuefs
54
53
- fetch https://sh.rustup.rs -o rustup.sh
55
-
- sh rustup.sh -y --profile=minimal --default-toolchain $TOOLCHAIN
54
+
- sh rustup.sh -y --profile=minimal --default-toolchain $MSRV
0 commit comments