-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: ibc query method get consensus state by height should return any type (#727) * patch: ibc query method get consensus state by height should return any type * fix: add uniformity * feat: remove xcall multi submodule (#733) * fix: remove xcall submodule * refactor: update test execution script * fix: update documentation * feat: save write ack event height (#734) * feat: save write ack event height * chore: style fixes Signed-off-by: Night Owl <[email protected]> * fix: add test case --------- Signed-off-by: Night Owl <[email protected]> Co-authored-by: viveksharmapoudel <[email protected]> Co-authored-by: Night Owl <[email protected]> * feat: test multiple packets on same height (#736) * add(test): multiple packets on same heigt * rf: simplfy recursion call * ci: remove cw_common from inside the docker container (#712) Signed-off-by: Night Owl <[email protected]> * chore: exclude cosmwasm library and common file from contract deployment (#698) --------- Signed-off-by: Night Owl <[email protected]> Co-authored-by: Debendra Oli <[email protected]> Co-authored-by: Night Owl <[email protected]> Co-authored-by: DeepakBomjan <[email protected]> * feat: get relayer version from comment, fix: ami build * rf: remove unnessary step * feat: test multiple packets on same height * fix: use constant version of [email protected] for build * fix: e2e test setup * fix: integration test --------- Signed-off-by: Night Owl <[email protected]> Co-authored-by: viveksharmapoudel <[email protected]> Co-authored-by: redlarva <[email protected]> Co-authored-by: izyak <[email protected]> Co-authored-by: Night Owl <[email protected]> Co-authored-by: Night Owl <[email protected]> Co-authored-by: DeepakBomjan <[email protected]> Co-authored-by: red__larva <[email protected]> Co-authored-by: izyak <[email protected]>
- Loading branch information
1 parent
335a316
commit 1075482
Showing
18 changed files
with
216 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- ".github/packer/*" | ||
|
||
jobs: | ||
start-runner: | ||
uses: ./.github/workflows/runner-start.yml | ||
secrets: inherit | ||
build: | ||
needs: start-runner | ||
runs-on: ${{ needs.start-runner.outputs.label }} | ||
defaults: | ||
run: | ||
working-directory: ./.github/packer | ||
env: | ||
PRODUCT_VERSION: latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Go 1.21 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.21 | ||
- name: Build | ||
uses: hashicorp/setup-packer@main | ||
with: | ||
version: ${{ env.PRODUCT_VERSION }} | ||
- name: Run `packer init` | ||
id: init | ||
run: "packer init ." | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v3 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | ||
- name: Run `packer validate` | ||
id: validate | ||
run: "packer validate ." | ||
- name: Build and Publish AMI | ||
run: packer build -color=false . | ||
stop-runner: | ||
uses: ./.github/workflows/runner-stop.yml | ||
secrets: inherit | ||
with: | ||
label: ${{ needs.start-runner.outputs.label }} | ||
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} | ||
needs: | ||
- start-runner | ||
- build |
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 |
---|---|---|
|
@@ -202,4 +202,4 @@ scripts/download_buf.sh | |
|
||
test/e2e-demo/ibc-config/** | ||
|
||
.xcall-multi | ||
.xcall-multi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ | |
} | ||
}, | ||
"key_password": "gochain" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.