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

Fix signature-aggregator arm builds #566

Merged
merged 4 commits into from
Nov 26, 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
2 changes: 1 addition & 1 deletion .github/workflows/release_awm_relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser-pro
version: latest
version: '~> v2'
args: release --clean --config relayer/.goreleaser.yml
env:
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_signature_aggregator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser-pro
version: latest
version: '~> v2'
args: release --clean --config signature-aggregator/.goreleaser.yml
env:
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
Expand Down
1 change: 1 addition & 0 deletions relayer/.goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ref. https://goreleaser.com/customization/build/
project_name: awm-relayer
version: 2
monorepo:
tag_prefix: awm-relayer/
builds:
Expand Down
3 changes: 3 additions & 0 deletions signature-aggregator/.goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ref. https://goreleaser.com/customization/build/
project_name: signature-aggregator
version: 2
monorepo:
tag_prefix: signature-aggregator/
builds:
Expand All @@ -22,10 +23,12 @@ builds:
overrides:
- goos: linux
goarch: arm64
goarm64: v8.0
env:
- CC=aarch64-linux-gnu-gcc
- goos: darwin
goarch: arm64
goarm64: v8.0
env:
- CC=oa64-clang
ignore:
Expand Down