Skip to content

Commit

Permalink
[CI] bump rust, add ipci runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Aug 29, 2022
1 parent 738a44b commit 9c93112
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 44 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-04-05
toolchain: nightly-2022-08-05
target: ${{ matrix.target }}
components: rustfmt, clippy
default: true

- name: Install WASM target (for runtime building)
run: rustup target add wasm32-unknown-unknown --toolchain nightly-2022-04-05
run: rustup target add wasm32-unknown-unknown --toolchain nightly-2022-08-05

- name: Build optimized binary
uses: actions-rs/cargo@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
SUBWASM_VERSION: 0.15.0
strategy:
matrix:
chain: ["alpha","main"]
chain: ["alpha","main","ipci"]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-04-05
toolchain: nightly-2022-08-05
target: ${{ matrix.target }}
components: rustfmt, clippy
default: true

- name: Install WASM target (for runtime building)
shell: bash
run: rustup target add wasm32-unknown-unknown --toolchain nightly-2022-04-05
run: rustup target add wasm32-unknown-unknown --toolchain nightly-2022-08-05

- name: Build optimized binary
uses: actions-rs/cargo@v1
Expand Down
37 changes: 0 additions & 37 deletions .github/workflows/robonomics-benchmarks.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/srtool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
chain: ["alpha","main"]
chain: ["alpha","main","ipci"]
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let
(import "${ros_overlay}/overlay.nix")
];
};
rust-nightly = pkgs.rustChannelOfTargets "nightly" "2022-04-05" [ "wasm32-unknown-unknown" ];
rust-nightly = pkgs.rustChannelOfTargets "nightly" "2022-08-05" [ "wasm32-unknown-unknown" ];
in
with pkgs;
with rosPackages.noetic;
Expand Down

0 comments on commit 9c93112

Please sign in to comment.