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

bugfix: add test for running cosmoshub and starship faucet #484

Merged
merged 4 commits into from
Jun 17, 2024
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- "agoric.yaml"
- "multi-relayer.yaml"
- "neutron-relayer.yaml"
- "one-cosmoshub-starship-faucet.yaml"
fail-fast: true
max-parallel: 1

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
- "one-chain-starship-faucet.yaml"
- "multi-validator-starship-faucet.yaml"
- "one-chain-cometmock.yaml"
- "one-cosmoshub-starship-faucet.yaml"
fail-fast: true
max-parallel: 3

Expand Down
2 changes: 1 addition & 1 deletion starship/charts/devnet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.3
version: 0.2.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion starship/charts/devnet/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ defaultChains:
prefix: cosmos
denom: uatom
prettyName: Cosmos Hub
coins: 100000000000000uatom,100000000000000stake
coins: 100000000000000uatom
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/cosmos/gaia
Expand Down
29 changes: 29 additions & 0 deletions starship/tests/e2e/configs/one-cosmoshub-starship-faucet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
chains:
- id: cosmoshub-4
name: cosmoshub
numValidators: 1
ports:
rest: 1313
rpc: 26653
exposer: 38083
faucet: 8003
resources:
cpu: "0.5"
memory: 500M
faucet:
type: starship
concurrency: 2

registry:
enabled: true
ports:
rest: 8081
grpc: 9091
resources:
cpu: "0.1"
memory: 100M

resources:
wait:
cpu: "0.1"
memory: 100M
Loading