Skip to content

Commit

Permalink
bump node version
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Apr 25, 2024
1 parent 32ebfd5 commit d5047fc
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 16 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:

jobs:
build_and_publish:
runs-on: release-runner
runs-on: arc-runner-set
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand All @@ -23,19 +23,15 @@ jobs:
with:
ssh-private-key: "${{ secrets.SSH_KEY }}"

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.9.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: stable

- name: Add wasm toolchain
run: |
sudo apt-get update
sudo apt-get install --assume-yes pkg-config git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
rustup install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
rustup target add wasm32-unknown-unknown
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# - N "local" tasks that build each platform's binaries and platform-specific installers
matrix: ${{ fromJson(needs.plan.outputs.val).ci.github.artifacts_matrix }}
# runs-on: ${{ matrix.runner }}
runs-on: release-runner
runs-on: arc-runner-set
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
Expand All @@ -120,11 +120,12 @@ jobs:

- uses: Swatinem/rust-cache@v2
- run: |
sudo apt-get update
sudo apt-get install --assume-yes jq pkg-config git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
rustup install nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
rustup target add wasm32-unknown-unknown
rustup component add rust-src
sudo apt install --assume-yes git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
- name: Install cargo-dist
run: ${{ matrix.install_dist }}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions evm/abi/src/generated/beefy.rs

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion evm/abi/src/generated/evm_host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1664,6 +1664,17 @@ pub mod evm_host {
),
indexed: false,
},
::ethers::core::abi::ethabi::EventParam {
name: ::std::borrow::ToOwned::to_owned("stateCommitment"),
kind: ::ethers::core::abi::ethabi::ParamType::Tuple(
::std::vec![
::ethers::core::abi::ethabi::ParamType::Uint(256usize),
::ethers::core::abi::ethabi::ParamType::FixedBytes(32usize),
::ethers::core::abi::ethabi::ParamType::FixedBytes(32usize),
],
),
indexed: false,
},
::ethers::core::abi::ethabi::EventParam {
name: ::std::borrow::ToOwned::to_owned("fisherman"),
kind: ::ethers::core::abi::ethabi::ParamType::Address,
Expand Down Expand Up @@ -2375,11 +2386,12 @@ pub mod evm_host {
)]
#[ethevent(
name = "StateCommitmentVetoed",
abi = "StateCommitmentVetoed(bytes,uint256,address)"
abi = "StateCommitmentVetoed(bytes,uint256,(uint256,bytes32,bytes32),address)"
)]
pub struct StateCommitmentVetoedFilter {
pub state_machine_id: ::ethers::core::types::Bytes,
pub height: ::ethers::core::types::U256,
pub state_commitment: StateCommitment,
pub fisherman: ::ethers::core::types::Address,
}
#[derive(
Expand Down
4 changes: 2 additions & 2 deletions evm/abi/src/generated/host_manager.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperbridge"
version = "0.4.1"
version = "0.4.2"
authors = ["Polytope Labs <[email protected]>"]
description = "The Hyperbridge coprocessor node"
repository = "https://github.com/polytope-labs/hyperbridge"
Expand Down

0 comments on commit d5047fc

Please sign in to comment.