File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -95,11 +95,19 @@ jobs:
9595 DEBIAN_FRONTEND=noninteractive apt-get update
9696 DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential ca-certificates clang curl pkg-config
9797
98- - name : Setup Rust
99- uses : dtolnay/rust-toolchain@stable
98+ # - name: Setup Rust
99+ # uses: dtolnay/rust-toolchain@stable
100100
101+ # TODO: Temporarily use nightly version of Rust for tests. Stable
102+ # currently has a bug that causes linking to fail. The fix is in
103+ # https://github.com/rust-lang/rust/commit/9ed0d11efbec18a1fa4155576a3bcb685676d23c
104+ # and will hit stable at some point.
105+
106+ - name : Setup Rust
107+ uses : dtolnay/rust-toolchain@nightly
108+
101109 - name : Test
102- run : cargo test --all-features
110+ run : cargo +nightly test --all-features # TODO: Temporarily use nightly for tests.
103111
104112 lints :
105113 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments