-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: testing ibc transactions on e2e tests (#2284)
* WIP: testing ibc txn on e2e tests * using testing docker images of gaia and hermes relayer * fixing the tests * fix the calculation on tests * fix++ * fix++ * fix++ * fix++ * adding default hermes relayer image * using ghcr gaia
- Loading branch information
Showing
9 changed files
with
174 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM golang:1.21-alpine | ||
ARG GAIA_VERSION=v5.0.7 | ||
FROM golang:1.20 | ||
ARG GAIA_VERSION=v13.0.0 | ||
|
||
ENV PACKAGES curl make git libc-dev bash gcc linux-headers | ||
RUN apk add --no-cache $PACKAGES | ||
# ENV PACKAGES curl make git libc-dev bash gcc linux-headers | ||
# RUN apk add --no-cache $PACKAGES | ||
RUN apt update && apt install curl make git gcc -y | ||
|
||
WORKDIR /downloads/ | ||
RUN git clone https://github.com/cosmos/gaia.git | ||
RUN cd gaia && git checkout ${GAIA_VERSION} && make build && cp ./build/gaiad /usr/local/bin/ | ||
|
||
RUN git clone --single-branch --depth 1 --branch ${GAIA_VERSION} https://github.com/cosmos/gaia.git | ||
RUN cd gaia && make build && cp ./build/gaiad /usr/local/bin/ | ||
EXPOSE 26656 26657 1317 9090 | ||
ENTRYPOINT ["gaiad", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.