Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix interchaintest image location #295

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/interchaintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
push: true
platforms: linux/amd64
tags: |
ghcr.io/notional-labs/centauri-ictest:latest
ghcr.io/composablefi/composable-cosmos/centauri-ictest:latest

test-start-cosmos-chain:
runs-on: ubuntu-latest
needs: build-and-push-image
Expand Down
6 changes: 3 additions & 3 deletions tests/interchaintest/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
)

var (
CentauriMainRepo = "ghcr.io/notional-labs/centauri"
CentauriICTestRepo = "ghcr.io/notional-labs/centauri-ictest"
CentauriGhcr = "ghcr.io/composablefi/composable-cosmos"
CentauriICTGhcr = "ghcr.io/composablefi/composable-cosmos/centauri-ictest"

repo, version = GetDockerImageInfo()

Expand Down Expand Up @@ -42,7 +42,7 @@ var (
// If testing locally, user should run `make docker-build-debug` and interchaintest will use the local image.
func GetDockerImageInfo() (repo, version string) {
branchVersion, found := os.LookupEnv("BRANCH_CI")
repo = CentauriICTestRepo
repo = CentauriGhcr
if !found {
// make local-image
repo = "centauri"
Expand Down
Loading