Skip to content

Commit

Permalink
rebase with master
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaan7 committed Oct 26, 2024
2 parents 366e5d2 + 4f14e16 commit b8187bf
Show file tree
Hide file tree
Showing 141 changed files with 10,372 additions and 3,070 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: build
run: cargo build --package cli --release --target aarch64-apple-darwin
run: cargo build --package helios-cli --release --target aarch64-apple-darwin

- name: archive
run: gtar -czvf "helios_darwin_arm64.tar.gz" -C ./target/aarch64-apple-darwin/release helios
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: build
run: cargo build --package cli --release --target x86_64-apple-darwin
run: cargo build --package helios-cli --release --target x86_64-apple-darwin

- name: archive
run: gtar -czvf "helios_darwin_amd64.tar.gz" -C ./target/x86_64-apple-darwin/release helios
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: build
run: cargo build --package cli --release --target aarch64-unknown-linux-gnu
run: cargo build --package helios-cli --release --target aarch64-unknown-linux-gnu

- name: archive
run: tar -czvf "helios_linux_arm64.tar.gz" -C ./target/aarch64-unknown-linux-gnu/release helios
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: build
run: cargo build --package cli --release --target x86_64-unknown-linux-gnu
run: cargo build --package helios-cli --release --target x86_64-unknown-linux-gnu

- name: archive
run: tar -czvf "helios_linux_amd64.tar.gz" -C ./target/x86_64-unknown-linux-gnu/release helios
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
prefix-key: "fresh2"

- name: build
run: cargo build --package cli --release --target armv7-unknown-linux-gnueabihf
run: cargo build --package helios-cli --release --target armv7-unknown-linux-gnueabihf

- name: archive
run: tar -czvf "helios_linux_armv7.tar.gz" -C ./target/armv7-unknown-linux-gnueabihf/release helios
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: build
run: cargo build --package cli --release --target riscv64gc-unknown-linux-gnu
run: cargo build --package helios-cli --release --target riscv64gc-unknown-linux-gnu

- name: archive
run: tar -czvf "helios_linux_riscv64gc.tar.gz" -C ./target/riscv64gc-unknown-linux-gnu/release helios
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:

env:
MAINNET_EXECUTION_RPC: ${{ secrets.MAINNET_EXECUTION_RPC }}
Expand Down
Loading

0 comments on commit b8187bf

Please sign in to comment.