Skip to content

Commit

Permalink
build Hermes image in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sainoe committed Jul 21, 2023
1 parent b5a0168 commit e7c8b09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ jobs:
**/**.go
go.mod
go.sum
- name: Build Docker Image
- name: Build Gaia Docker Image
run: make docker-build-debug
- name: Build Hermes Docker Image
run: make docker-build-hermes
- name: Test E2E
run: make test-e2e

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/docker/hermes.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM informalsystems/hermes:1.4.0 AS hermes-builder
FROM informalsystems/hermes:1.4.1 AS hermes-builder

FROM debian:buster-slim
USER root
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/e2e_setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ func (s *IntegrationTestSuite) runIBCRelayer0() {
&dockertest.RunOptions{
Name: fmt.Sprintf("%s-%s-relayer-0", s.chainA.id, s.chainB.id),
Repository: "ghcr.io/cosmos/hermes-e2e",
Tag: "1.4.0",
Tag: "1.4.1",
NetworkID: s.dkrNet.Network.ID,
Mounts: []string{
fmt.Sprintf("%s/:/root/hermes", hermesCfgPath),
Expand Down Expand Up @@ -743,7 +743,7 @@ func (s *IntegrationTestSuite) runIBCRelayer1() {
&dockertest.RunOptions{
Name: fmt.Sprintf("%s-%s-relayer-1", s.chainA.id, s.chainB.id),
Repository: "ghcr.io/cosmos/hermes-e2e",
Tag: "1.4.0",
Tag: "1.4.1",
NetworkID: s.dkrNet.Network.ID,
Mounts: []string{
fmt.Sprintf("%s/:/root/hermes", hermesCfgPath),
Expand Down

0 comments on commit e7c8b09

Please sign in to comment.