Skip to content

Commit b5906ee

Browse files
bors[bot]cuviper
andauthored
Merge #257
257: ci: downgrade libm for MSRV testing r=cuviper a=cuviper Co-authored-by: Josh Stone <cuviper@gmail.com>
2 parents 5397a1c + 7daa55e commit b5906ee

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
with:
3030
toolchain: ${{ matrix.rust }}
3131
- run: cargo build
32+
env:
33+
# https://github.com/rust-lang/cargo/issues/10303
34+
CARGO_NET_GIT_FETCH_WITH_CLI: true
3235
- run: ./ci/test_full.sh
3336

3437
# i586 presents floating point challenges for lack of SSE/SSE2

ci/test_full.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ fi
3030
FEATURES=(libm)
3131
echo "Testing supported features: ${FEATURES[*]}"
3232

33+
cargo generate-lockfile
34+
35+
# libm 0.2.6 started using {float}::EPSILON
36+
check_version 1.43 || cargo update -p libm --precise 0.2.5
37+
3338
set -x
3439

3540
# test the default

0 commit comments

Comments
 (0)