Skip to content

Commit

Permalink
chore: bump peggo, hermes, gaiad and price-feeder version (#594) (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Mar 1, 2022
1 parent fd89dff commit 9f20f1c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN cd price-feeder && make install

# Fetch peggo (gravity bridge) binary
FROM golang:1.17-alpine AS peggo-builder
ARG PEGGO_VERSION=v0.2.5
ARG PEGGO_VERSION=v0.2.6
ENV PACKAGES make git libc-dev gcc linux-headers
RUN apk add --no-cache $PACKAGES
WORKDIR /downloads/
Expand Down
9 changes: 5 additions & 4 deletions infra/packer/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ COPY Makefile go.mod go.sum ./
COPY ante/ ante/
COPY app/ app/
COPY cmd/ cmd/
COPY price-feeder/ price-feeder/
COPY tests/ tests/
COPY x/ x/

Expand All @@ -32,13 +31,15 @@ RUN mv build/umeed build/umeed-beta
# Build umeed
RUN make build

# Build price-feeder
WORKDIR /tmp/build/umee/price-feeder
# Clone/Build price-feeder
WORKDIR /tmp/build/price-feeder
RUN git clone https://github.com/umee-network/umee.git --branch price-feeder/v0.1.1 --single-branch --depth 1 .
WORKDIR /tmp/build/price-feeder/price-feeder
RUN make build

# Clone/Build Peggo
WORKDIR /tmp/build/peggo
RUN git clone https://github.com/umee-network/peggo.git --branch v0.2.2 --single-branch --depth 1 .
RUN git clone https://github.com/umee-network/peggo.git --branch v0.2.6 --single-branch --depth 1 .
RUN make build

WORKDIR /root
4 changes: 2 additions & 2 deletions infra/packer/bin/build-dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CONTAINER=`docker create $TAG`

docker cp "$CONTAINER:/tmp/build/umee/build/umeed-beta" dist/x86_64/
docker cp "$CONTAINER:/tmp/build/umee/build/umeed" dist/x86_64/
docker cp "$CONTAINER:/tmp/build/umee/price-feeder/build/price-feeder" dist/x86_64/
docker cp "$CONTAINER:/tmp/build/price-feeder/price-feeder/build/price-feeder" dist/x86_64/
docker cp "$CONTAINER:/tmp/build/peggo/build/peggo" dist/x86_64/

docker rm -v "$CONTAINER"
docker rm -v "$CONTAINER"
4 changes: 2 additions & 2 deletions infra/packer/umee-node-dist.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ build {
, "apt install -y --no-install-recommends caddy"
, "apt dist-upgrade -y"
, "rm -rf /var/lib/{apt,dpkg,cache,log}/"
, "curl -sLf https://github.com/informalsystems/ibc-rs/releases/download/v0.11.0/hermes-v0.11.0-x86_64-unknown-linux-gnu.tar.gz | tar -C /usr/local/bin -xz"
, "curl -sLf https://github.com/cosmos/gaia/releases/download/v6.0.0/gaiad-v6.0.0-linux-amd64 -o /usr/local/bin/gaiad"
, "curl -sLf https://github.com/informalsystems/ibc-rs/releases/download/v0.12.0/hermes-v0.12.0-x86_64-unknown-linux-gnu.tar.gz | tar -C /usr/local/bin -xz"
, "curl -sLf https://github.com/cosmos/gaia/releases/download/v6.0.3/gaiad-v6.0.3-linux-amd64 -o /usr/local/bin/gaiad"
, "chmod a+x /usr/local/bin/gaiad"
]
}
Expand Down

0 comments on commit 9f20f1c

Please sign in to comment.