Skip to content

Commit

Permalink
chore: upgrade to stable toolchain (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasir Shariff authored Sep 1, 2023
1 parent cda1dc4 commit 8d93197
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
# TODO: Bring `stable` back to the matrix once Rust 1.70.0+ compatibility is resolved in nearcore:
# https://github.com/near/nearcore/issues/9143
toolchain: [1.69.0]
toolchain: [stable]

runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

## Requirements

- Rust v1.69.0 and up (NOTE: [contracts compiled w/ 1.70+ will fail currently](https://github.com/near/nearcore/issues/9143))
- Rust v1.69.0 and up.
- MacOS (x86 and M1) or Linux (x86) for sandbox tests.

### WASM compilation not supported
Expand Down
4 changes: 3 additions & 1 deletion workspaces/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ fn main() {
let env_bin = std::env::var("NEAR_SANDBOX_BIN_PATH").is_ok();
if !doc_build && !env_bin && cfg!(feature = "install") {
// TODO Update commit to stable version once binaries are published correctly
near_sandbox_utils::install().expect("Could not install sandbox");
// Commit: https://github.com/near/nearcore/commit/eb2bbe1c3f51912c04462ce988aa496fab03d60e
near_sandbox_utils::install_with_version("master/eb2bbe1c3f51912c04462ce988aa496fab03d60e")
.expect("Could not install sandbox");
}
}

0 comments on commit 8d93197

Please sign in to comment.