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 5036025
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 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
2 changes: 1 addition & 1 deletion dockerfile/none/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ARG LIBRARIES
ENV LIBRARIES_ENV ${LIBRARIES}
RUN bash -c 'LIBRARIES_ARR=($LIBRARIES_ENV); for LIBRARY in "${LIBRARIES_ARR[@]}"; do cp $LIBRARY /root/lib/; done'

FROM debian:bullseye
FROM debian:bookworm

LABEL org.opencontainers.image.source="https://github.com/p2p-org/cosmos-heighliner"

Expand Down

0 comments on commit 5036025

Please sign in to comment.