Skip to content

Commit

Permalink
update Axelar config
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyzhigaev committed Dec 17, 2024
1 parent 978d186 commit 0fd0cb4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/axelar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Build and push Axelar Docker image
run: |
./heighliner build -c axelar --go-version 1.21 --alpine-version 3.18 --git-ref ${{ env.VERSION }}
./heighliner build -c axelar --git-ref ${{ env.VERSION }}
- name: Tag and push Docker image
run: |
Expand Down
12 changes: 11 additions & 1 deletion chains/axelar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@
- name: axelar
github-organization: axelarnetwork
github-repo: axelar-core
dockerfile: cosmos
dockerfile: none
pre-build: |
set -eux
wget https://axelar-releases.s3.us-east-2.amazonaws.com/axelard/${VERSION}/axelard-linux-amd64-${VERSION}.zip
apt update && apt -y install unzip
unzip axelard-linux-amd64-${VERSION}.zip
mv axelard-linux-amd64-${VERSION} /go/bin/axelard
chmod +x bin/axelard
wget https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.x86_64.so
binaries:
- bin/axelard
libraries:
- libwasmvm.x86_64.so
build-target: |
set -eux
apk add --update nodejs npm jq py3-pip
Expand Down

0 comments on commit 0fd0cb4

Please sign in to comment.