Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 committed Feb 26, 2024
1 parent 82989fd commit f001453
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e-test-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "e2e-test-ibc"
- "e2e-test-ibc-timeout"
- "e2e-ibc-grace-period"
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions tests/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var (
DymensionMainRepo = "ghcr.io/dymensionxyz/dymension"

RollappMainRepo = "ghcr.io/decentrio/rollapp"
RollappMainRepo = "ghcr.io/dymensionxyz/rollapp"

dymensionVersion, rollappVersion = GetDockerImageVersion()

Expand Down Expand Up @@ -52,12 +52,12 @@ var (
func GetDockerImageVersion() (dymensionVersion, rollappVersion string) {
dymensionVersion, found := os.LookupEnv("DYMENSION_CI")
if !found {
dymensionVersion = "e2e"
dymensionVersion = "latest"
}

rollappVersion, found = os.LookupEnv("ROLLAPP_CI")
if !found {
rollappVersion = "e2e"
rollappVersion = "latest"
}
return dymensionVersion, rollappVersion
}
Expand Down

0 comments on commit f001453

Please sign in to comment.