We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9857edd commit 4fb4de3Copy full SHA for 4fb4de3
.github/workflows/rust.yml
@@ -107,4 +107,4 @@ jobs:
107
toolchain: ${{ matrix.rust }}
108
override: true
109
- name: Running cargo in release mode
110
- run: cargo test --features="global-context" --release
+ run: cargo update -p cc --precise 1.0.94 && cargo test --features="global-context" --release
contrib/test.sh
@@ -8,6 +8,11 @@ rustc --version
8
# Make all cargo invocations verbose
9
export CARGO_TERM_VERBOSE=true
10
11
+# Pin dependencies as required if we are using MSRV toolchain.
12
+if cargo --version | grep "1\.56"; then
13
+ cargo update -p cc --precise 1.0.94
14
+fi
15
+
16
# Defaults / sanity checks
17
cargo build --all
18
cargo test --all
0 commit comments