Skip to content

Commit 8516724

Browse files
committed
Revert "ci: revert back to stable for tests"
This reverts commit d937bf9.
1 parent d937bf9 commit 8516724

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)