-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into state-download
- Loading branch information
Showing
42 changed files
with
2,286 additions
and
953 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
test-64bits: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Swatinem/rust-cache@v1 | ||
|
@@ -36,7 +36,7 @@ jobs: | |
test-32bits: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- run: apt-get update && apt install -y libc6-dev-i386 | ||
- uses: actions/checkout@v3 | ||
|
@@ -47,12 +47,12 @@ jobs: | |
wasm-node-check: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- run: apt-get update && apt install -y binaryen # For `wasm-opt` | ||
- uses: actions/checkout@v3 | ||
- uses: Swatinem/rust-cache@v1 | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
node-version: '12' # An old version is used to ensure compatibility | ||
- uses: denoland/setup-deno@v1 | ||
|
@@ -63,14 +63,14 @@ jobs: | |
wasm-node-size-diff: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- run: apt-get update && apt install -y cmake # TODO: remove; temporarily needed to build the `prost-build` library in the "before" comparison | ||
- run: apt-get update && apt install -y binaryen # For `wasm-opt` | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Necessary to fetch pull request base below | ||
- uses: Swatinem/rust-cache@v1 | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
node-version: '14' # Because this step doesn't actually check anything, we use a more liberal version | ||
- uses: baptiste0928/cargo-install@v1 # This action ensures that the twiggy compilation is cached. | ||
|
@@ -98,7 +98,7 @@ jobs: | |
check-features: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Swatinem/rust-cache@v1 | ||
|
@@ -128,7 +128,7 @@ jobs: | |
# Since build artifacts are specific to a nightly version, we pin the specific nightly | ||
# version to use in order to not invalidate the build cache every day. The exact version | ||
# is completely arbitrary. | ||
toolchain: nightly-2022-06-05 | ||
toolchain: nightly-2022-10-16 | ||
override: true | ||
- uses: baptiste0928/cargo-install@v1 # This action ensures that the compilation is cached. | ||
with: | ||
|
@@ -141,7 +141,7 @@ jobs: | |
check-rustdoc-links: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Swatinem/rust-cache@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
path: repo | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
node-version: current | ||
- run: npm install | ||
|
@@ -87,10 +87,10 @@ jobs: | |
npm-publish: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.61 | ||
image: rust:1.64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
node-version: 12 # An old version is intentionally used in order to check compatibility | ||
- run: apt-get update && apt install -y binaryen # For `wasm-opt` | ||
|
@@ -121,7 +121,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Necessary below for checking if the tag exists. | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
node-version: 12 | ||
- uses: denoland/setup-deno@v1 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.