Skip to content

Commit

Permalink
chore: miscellaneous improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey committed Jun 9, 2023
1 parent fb55ea2 commit 65a9079
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Upgrade
name: Test Upgrades

on: pull_request

Expand All @@ -12,9 +12,9 @@ jobs:
uses: actions/setup-go@v4

- name: Install Heighliner
run: make heighliner-setup ENV=mainnet
run: make heighliner-setup
- name: Build Images
run: make heighliner ENV=mainnet
run: make heighliner

- name: Run Upgrade Tests
run: make test-upgrade ENV=mainnet
run: make test-upgrade
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ build: ensure_environment ensure_version
@go build $(BUILD_FLAGS) -o "$(PWD)/build/" ./cmd/kyved
@echo "✅ Completed build!"

install: ensure_environment ensure_version
# TODO(@john): Figure out why the version check fails.
install: ensure_environment
@echo "🤖 Installing kyved..."
@go install -mod=readonly $(BUILD_FLAGS) ./cmd/kyved
@echo "✅ Completed installation!"
Expand Down Expand Up @@ -155,11 +156,11 @@ proto-setup:

heighliner:
@echo "🤖 Building Kaon image..."
@heighliner build --chain kaon --local 1> /dev/null
@heighliner build --chain kaon --local
@echo "✅ Completed build!"

@echo "🤖 Building KYVE image..."
@heighliner build --chain kyve --local 1> /dev/null
@heighliner build --chain kyve --local
@echo "✅ Completed build!"

heighliner-setup:
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v1_3/upgrade_utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var testnetConfig = ibc.ChainConfig{
ChainID: "kaon-1",
Images: []ibc.DockerImage{{
Repository: "ghcr.io/strangelove-ventures/heighliner/kaon",
Version: "v1.2.0",
Version: "v1.2.2",
UidGid: "1025:1025",
}},
Bin: "kyved",
Expand All @@ -38,7 +38,7 @@ var mainnetConfig = ibc.ChainConfig{
ChainID: "kyve-1",
Images: []ibc.DockerImage{{
Repository: "ghcr.io/strangelove-ventures/heighliner/kyve",
Version: "v1.2.0",
Version: "v1.2.2",
UidGid: "1025:1025",
}},
Bin: "kyved",
Expand Down

0 comments on commit 65a9079

Please sign in to comment.