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.
2 parents 5397a1c + 7daa55e commit b5906eeCopy full SHA for b5906ee
.github/workflows/ci.yaml
@@ -29,6 +29,9 @@ jobs:
29
with:
30
toolchain: ${{ matrix.rust }}
31
- run: cargo build
32
+ env:
33
+ # https://github.com/rust-lang/cargo/issues/10303
34
+ CARGO_NET_GIT_FETCH_WITH_CLI: true
35
- run: ./ci/test_full.sh
36
37
# i586 presents floating point challenges for lack of SSE/SSE2
ci/test_full.sh
@@ -30,6 +30,11 @@ fi
FEATURES=(libm)
echo "Testing supported features: ${FEATURES[*]}"
+cargo generate-lockfile
+
+# libm 0.2.6 started using {float}::EPSILON
+check_version 1.43 || cargo update -p libm --precise 0.2.5
38
set -x
39
40
# test the default
0 commit comments