Skip to content

Commit

Permalink
Rust 1.64 (#1075)
Browse files Browse the repository at this point in the history
* rust: 1.64.0

* tmp: Build full CI for this branch

* nix

* Revert "tmp: Build full CI for this branch"

This reverts commit fe3596c.
  • Loading branch information
NunoAlexandre authored Nov 11, 2022
1 parent 8ada2a3 commit 2e58948
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,38 @@
"os": "ubuntu-latest",
"target": "build-node",
"run_on_event": "any",
"rust_toolchain": "nightly-2022-05-09"
"rust_toolchain": "nightly-2022-08-05"
},

{
"os": "ubuntu-latest",
"target": "build-runtime",
"package": "altair-runtime",
"run_on_event": "push",
"rust_toolchain": "1.62.0"
"rust_toolchain": "1.64.0"
},

{
"os": "ubuntu-latest",
"target": "build-runtime",
"package": "centrifuge-runtime",
"run_on_event": "push",
"rust_toolchain": "1.62.0"
"rust_toolchain": "1.64.0"
},

{
"os": "ubuntu-latest",
"target": "build-runtime-fast",
"package": "altair-runtime",
"run_on_event": "push",
"rust_toolchain": "1.62.0"
"rust_toolchain": "1.64.0"
},

{
"os": "ubuntu-latest",
"target": "build-runtime-fast",
"package": "centrifuge-runtime",
"run_on_event": "push",
"rust_toolchain": "1.62.0"
"rust_toolchain": "1.64.0"
}
]
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: ${{ matrix.target }}
runs-on: ${{ matrix.os }}
env:
RUST_TOOLCHAIN: "nightly-2022-05-09"
RUST_TOOLCHAIN: "nightly-2022-08-05"
steps:
- name: Free space on Ubuntu
if: ${{ matrix.os }} == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
required: true
default: ''
env:
RUST_TOOLCHAIN: "nightly-2022-05-09"
RUST_TOOLCHAIN: "nightly-2022-08-05"
jobs:
docker:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
docs:
runs-on: ubuntu-latest
env:
RUST_TOOLCHAIN: "nightly-2022-05-09"
RUST_TOOLCHAIN: "nightly-2022-08-05"
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -eux

RUST_TOOLCHAIN="${RUST_TOOLCHAIN:-nightly-2022-05-09}"
SRTOOL_VERSION="${SRTOOL_VERSION:-1.62.0}"
RUST_TOOLCHAIN="${RUST_TOOLCHAIN:-nightly-2022-08-05}"
SRTOOL_VERSION="${SRTOOL_VERSION:-1.64.0}"
PACKAGE="${PACKAGE:-centrifuge-runtime}" # Need to replicate job for all runtimes


Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# This selects a nightly Rust version, based on the date.
nightly-date = pkgs.lib.strings.removePrefix "nightly-" rustToolChainTOML.toolchain.channel;
# This is the hash of the Rust toolchain at nightly-date, required for reproducibility.
nightly-sha256 = "sha256-CNMj0ouNwwJ4zwgc/gAeTYyDYe0botMoaj/BkeDTy4M=";
nightly-sha256 = "sha256-UuVX3RxSsUfng4G/Bec8JcI/lOUmxrG7NXSG5hMRgbc=";
# This is the git short commit of the current version of the program.
shortCommit = builtins.substring 0 7 (inputs.self.rev or "dirty");

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2022-05-09"
channel = "nightly-2022-08-05"
components = [ "rustfmt", "clippy" ]
targets = [ "wasm32-unknown-unknown" ]
profile = "minimal"

0 comments on commit 2e58948

Please sign in to comment.