Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
ci: Use nightly-2021-11-01 for smoke tests (#129)
Browse files Browse the repository at this point in the history
Fixes the following error:
error[E0658]: use of unstable library feature 'proc_macro_is_available'
  --> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.33/src/detection.rs:28:21
   |
28 |     let available = proc_macro::is_available();
   |                     ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: see issue #71436 <rust-lang/rust#71436> for more information
   = help: add `#![feature(proc_macro_is_available)]` to the crate attributes to enable

For more information about this error, try `rustc --explain E0658`.
error: could not compile `proc-macro2` due to previous error
  • Loading branch information
Xanewok authored and montekki committed Dec 20, 2021
1 parent d912001 commit e7d69d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ jobs:
include:
- target_repository: paritytech/polkadot
# Pin a well-known nightly version to avoid upstream breakage
rustc: nightly-2021-10-04
rustc: nightly-2021-11-01
target: wasm32-unknown-unknown
allow_failure: true
- target_repository: paritytech/substrate
rustc: nightly-2021-10-04
rustc: nightly-2021-11-01
target: wasm32-unknown-unknown
allow_failure: true
- target_repository: serde-rs/serde
Expand Down

0 comments on commit e7d69d6

Please sign in to comment.