Skip to content

Commit adf42ad

Browse files
committed
bump node version
1 parent 32ebfd5 commit adf42ad

File tree

7 files changed

+25
-16
lines changed

7 files changed

+25
-16
lines changed

.github/workflows/docker.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111

1212
jobs:
1313
build_and_publish:
14-
runs-on: release-runner
14+
runs-on: arc-runner-set
1515
steps:
1616
- name: Checkout sources
1717
uses: actions/checkout@v3
@@ -23,19 +23,15 @@ jobs:
2323
with:
2424
ssh-private-key: "${{ secrets.SSH_KEY }}"
2525

26-
- name: Install Protoc
27-
uses: arduino/setup-protoc@v1
28-
with:
29-
version: '3.9.1'
30-
repo-token: ${{ secrets.GITHUB_TOKEN }}
31-
3226
- name: Install toolchain
3327
uses: dtolnay/rust-toolchain@nightly
3428
with:
3529
toolchain: stable
3630

3731
- name: Add wasm toolchain
3832
run: |
33+
sudo apt-get update
34+
sudo apt-get install --assume-yes pkg-config git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
3935
rustup install nightly
4036
rustup target add wasm32-unknown-unknown --toolchain nightly
4137
rustup target add wasm32-unknown-unknown

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
# - N "local" tasks that build each platform's binaries and platform-specific installers
105105
matrix: ${{ fromJson(needs.plan.outputs.val).ci.github.artifacts_matrix }}
106106
# runs-on: ${{ matrix.runner }}
107-
runs-on: release-runner
107+
runs-on: arc-runner-set
108108
env:
109109
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
110110
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
@@ -120,11 +120,12 @@ jobs:
120120

121121
- uses: Swatinem/rust-cache@v2
122122
- run: |
123+
sudo apt-get update
124+
sudo apt-get install --assume-yes pkg-config git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
123125
rustup install nightly
124126
rustup target add wasm32-unknown-unknown --toolchain nightly
125127
rustup target add wasm32-unknown-unknown
126128
rustup component add rust-src
127-
sudo apt install --assume-yes git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
128129
129130
- name: Install cargo-dist
130131
run: ${{ matrix.install_dist }}

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

evm/abi/src/generated/beefy.rs

+2-2
Large diffs are not rendered by default.

evm/abi/src/generated/evm_host.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -1664,6 +1664,17 @@ pub mod evm_host {
16641664
),
16651665
indexed: false,
16661666
},
1667+
::ethers::core::abi::ethabi::EventParam {
1668+
name: ::std::borrow::ToOwned::to_owned("stateCommitment"),
1669+
kind: ::ethers::core::abi::ethabi::ParamType::Tuple(
1670+
::std::vec![
1671+
::ethers::core::abi::ethabi::ParamType::Uint(256usize),
1672+
::ethers::core::abi::ethabi::ParamType::FixedBytes(32usize),
1673+
::ethers::core::abi::ethabi::ParamType::FixedBytes(32usize),
1674+
],
1675+
),
1676+
indexed: false,
1677+
},
16671678
::ethers::core::abi::ethabi::EventParam {
16681679
name: ::std::borrow::ToOwned::to_owned("fisherman"),
16691680
kind: ::ethers::core::abi::ethabi::ParamType::Address,
@@ -2375,11 +2386,12 @@ pub mod evm_host {
23752386
)]
23762387
#[ethevent(
23772388
name = "StateCommitmentVetoed",
2378-
abi = "StateCommitmentVetoed(bytes,uint256,address)"
2389+
abi = "StateCommitmentVetoed(bytes,uint256,(uint256,bytes32,bytes32),address)"
23792390
)]
23802391
pub struct StateCommitmentVetoedFilter {
23812392
pub state_machine_id: ::ethers::core::types::Bytes,
23822393
pub height: ::ethers::core::types::U256,
2394+
pub state_commitment: StateCommitment,
23832395
pub fisherman: ::ethers::core::types::Address,
23842396
}
23852397
#[derive(

evm/abi/src/generated/host_manager.rs

+2-2
Large diffs are not rendered by default.

parachain/node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperbridge"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Polytope Labs <hello@polytope.technology>"]
55
description = "The Hyperbridge coprocessor node"
66
repository = "https://github.com/polytope-labs/hyperbridge"

0 commit comments

Comments
 (0)