-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: final cleanup for v0.50.3 (#173)
* testnet: simply output information & add more docs * bump: ICT & local-ic v8.5.0 * `git checkout v0.50.3` * add `make get-localic` to docs * `cfg.Bech32Prefix = strings.ToLower` (fixes testnet) * chore(deps): bump spawn ICT + local-ic * fix: docs/demo
- Loading branch information
1 parent
5559512
commit 1a52a76
Showing
14 changed files
with
41 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
name: cloud testnet | ||
name: public cloud testnet | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' # ignore rc | ||
|
||
# https://github.com/<org>/<repo>/settings/secrets/actions/new | ||
# - HCLOUD_TOKEN | ||
# - SSH_PRIVATE_KEY | ||
# - HCLOUD_TOKEN # console.hetzner.cloud -> [select project] -> security -> API Tokens -> Generate API Token (Red) | ||
# - SSH_PRIVATE_KEY # The raw contents of an RSA / ed25519 private key (cat ~/.ssh/id_ed25519) | ||
|
||
env: | ||
# NOTE: Your repo must be public to use this action. If not, use the self hosted action. | ||
GO_VERSION: 1.22.3 | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
LOCALIC_PORT: 8080 | ||
LOCALIC_AUTH_KEY: "" | ||
HETZNER_SSH_KEY: "reece-hetzner" | ||
# HETZNER_MACHINE_TYPE: "cpx31" # shared 4vCPU ($7/Mo) | ||
HETZNER_MACHINE_TYPE: "ccx23" # dedicated 4 CPU 16GB Ram ($25/Mo)z | ||
HETZNER_SSH_KEY: "reece-hetzner" # console.hetzner.cloud -> [select project] -> security -> Add SSH Key | ||
# HETZNER_MACHINE_TYPE: "cpx31" # shared 4vCPU ($7/Mo) | ||
HETZNER_MACHINE_TYPE: "ccx23" # dedicated 4 CPU 16GB Ram ($25/Mo)z | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
@@ -48,12 +49,12 @@ jobs: | |
echo "GITHUB_REF_NAME=${{ github.ref_name }}" >> $GITHUB_ENV | ||
echo "LOCALIC_PORT=${{ env.LOCALIC_PORT }}" >> $GITHUB_ENV | ||
- uses: JasonEtco/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
filename: .github/testnet.md | ||
update_existing: true | ||
- name: Output Information | ||
run: | | ||
echo "Server IP: ${{ env.SERVER_IPV4_ADDR }}" | ||
echo "GITHUB_SHA: $GITHUB_SHA" | ||
echo "GITHUB_REF_NAME: $GITHUB_REF_NAME" | ||
echo "LOCAL_IC API: http://${{ env.SERVER_IPV4_ADDR }}:${{ env.LOCALIC_PORT }}" | ||
- name: Testnet setup | ||
uses: appleboy/[email protected] | ||
|
@@ -76,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.4.0/local-ic && chmod +x local-ic | ||
wget https://github.com/strangelove-ventures/interchaintest/releases/download/v8.5.0/local-ic && chmod +x local-ic | ||
sudo mv local-ic /usr/local/bin | ||
git clone https://github.com/strangelove-ventures/heighliner.git && cd heighliner | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters