Skip to content

Commit

Permalink
chore: Update makefile get-localic to download latest localic version…
Browse files Browse the repository at this point in the history
… 8.7.1 (#230)

* Update makefile get-localic to download latest localic version

* bump in other places too with `./scripts/bump_localic.sh

---------

Co-authored-by: Reece Williams <[email protected]>
  • Loading branch information
pharr117 and Reecepbcups authored Oct 10, 2024
1 parent 7d8f1fd commit 5c03b41
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN go mod tidy
COPY . .

# Download local-ic (nested spawn add on)
RUN wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.0/local-ic && chmod +x local-ic
RUN wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.1/local-ic && chmod +x local-ic
RUN mv ./local-ic /go/bin

# Build Spawn
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ get-heighliner:

get-localic:
@echo "Installing local-interchain"
git clone --depth 1 --branch v8.7.0 https://github.com/strangelove-ventures/interchaintest.git interchaintest-downloader
git clone --depth 1 --branch v8.7.1 https://github.com/strangelove-ventures/interchaintest.git interchaintest-downloader
cd interchaintest-downloader/local-interchain && make install
@sleep 0.1
@echo ✅ local-interchain installed $(shell which local-ic)
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump_localic.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# sh scripts/bump_localic.sh

NEW_VERSION=v8.7.0
NEW_VERSION=v8.7.1

find . -type f -name "*.md"

Expand Down
2 changes: 1 addition & 1 deletion simapp/.github/workflows/testnet-hetzner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install docker.io docker-compose
sudo apt-get update
wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.0/local-ic && chmod +x local-ic
wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.1/local-ic && chmod +x local-ic
sudo mv local-ic /usr/local/bin
git clone https://github.com/strangelove-ventures/heighliner.git && cd heighliner
Expand Down
2 changes: 1 addition & 1 deletion simapp/.github/workflows/testnet-self-hosted.yml.optional
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install docker.io docker-compose
sudo apt-get update

wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.0/local-ic && chmod +x local-ic
wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.7.1/local-ic && chmod +x local-ic
sudo mv local-ic /usr/local/bin

git clone https://github.com/strangelove-ventures/heighliner.git && cd heighliner
Expand Down

0 comments on commit 5c03b41

Please sign in to comment.