Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

operation solar storm #403

Merged
merged 12 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading