-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from osmosis-labs/anmol/trim-starship-integration
trim starship integration
- Loading branch information
Showing
22 changed files
with
881 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
name: E2E tests | ||
name: Starship E2E tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- anmol/trim-starship-integration | ||
pull_request: | ||
branches: | ||
- main | ||
|
@@ -23,6 +24,11 @@ jobs: | |
go-version: ^1.20 | ||
id: go | ||
|
||
- name: Deps | ||
run: | | ||
cd tests/starship/ | ||
go mod tidy | ||
# Starship Infra setup | ||
# - Connects to k8s cluster with kubeconfig (digital ocean) | ||
# - Creates a new namespace based on the name (deleted in next step) | ||
|
@@ -31,20 +37,18 @@ jobs: | |
# - Port forward all ports to localhost for next steps to connect | ||
- name: Setup Test infra | ||
id: starship-action | ||
uses: cosmology-tech/[email protected].12 | ||
uses: cosmology-tech/[email protected].15 | ||
with: | ||
values: tests/starship/configs/ci.yaml | ||
port-forward: true | ||
version: 0.1.39-rc5 | ||
version: 0.1.46-rc1 | ||
|
||
- name: Run Tests | ||
run: | | ||
cd tests/starship/ | ||
go mod tidy | ||
make test | ||
# Starship resource cleanup on cluster | ||
# todo(@anmol1696): change this to be post step of the action | ||
- name: Cleanup cluster | ||
if: always() | ||
run: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
package osmosis.meshsecurity.v1beta1; | ||
|
||
import "osmosis/meshsecurity/v1beta1/meshsecurity.proto"; | ||
import "gogoproto/gogo.proto"; | ||
import "amino/amino.proto"; | ||
|
||
option go_package = "github.com/osmosis-labs/mesh-security-sdk/x/meshsecurity/types"; | ||
option (gogoproto.goproto_getters_all) = false; | ||
option (gogoproto.equal_all) = false; | ||
|
||
// GenesisState defines meshsecurity module's genesis state. | ||
message GenesisState { | ||
option (gogoproto.equal) = true; | ||
|
||
Params params = 1 | ||
[ (gogoproto.nullable) = false, (amino.dont_omitempty) = true ]; | ||
} |
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
Oops, something went wrong.