Skip to content
Open
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
13 changes: 11 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@ before:
- wget -nc https://github.com/CosmWasm/wasmvm/releases/download/{{ .Env.COSMWASM_VERSION }}/libwasmvm_muslc.aarch64.a -O /lib/libwasmvm_muslc.aarch64.a
- wget -nc https://github.com/CosmWasm/wasmvm/releases/download/{{ .Env.COSMWASM_VERSION }}/libwasmvmstatic_darwin.a -O /lib/libwasmvmstatic_darwin.a

- curl -LO https://musl.cc/x86_64-linux-musl-cross.tgz
# - curl -LO https://musl.cc/x86_64-linux-musl-cross.tgz
# - tar xf x86_64-linux-musl-cross.tgz
# - mv -n -u x86_64-linux-musl-cross /opt/musl-cross-x86_64

# - curl -LO https://musl.cc/aarch64-linux-musl-cross.tgz
# - tar xf aarch64-linux-musl-cross.tgz
# - mv -n -u aarch64-linux-musl-cross /opt/musl-cross-aarch64
# START - PoC Ricardo - Babylon Artifact Store
- aws s3 cp s3://babylonlabs-artifact-store/musl/latest/x86_64-linux-musl-cross.tgz .
- tar xf x86_64-linux-musl-cross.tgz
- mv -n -u x86_64-linux-musl-cross /opt/musl-cross-x86_64

- curl -LO https://musl.cc/aarch64-linux-musl-cross.tgz
- aws s3 cp s3://babylonlabs-artifact-store/musl/latest/aarch64-linux-musl-cross.tgz .
- tar xf aarch64-linux-musl-cross.tgz
- mv -n -u aarch64-linux-musl-cross /opt/musl-cross-aarch64
# END - PoC Ricardo - Babylon Artifact Store
Comment on lines +21 to +29
Copy link

Copilot AI Oct 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comments indicate this is a proof-of-concept change. Consider removing these temporary comments and the commented-out curl commands once the S3 approach is proven stable, or add a TODO comment with a timeline for cleanup.

Copilot uses AI. Check for mistakes.


builds:
- id: babylond-linux-amd64
Expand Down
Loading