-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update_twap_response
- Loading branch information
Showing
127 changed files
with
6,550 additions
and
9,448 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# When new major release is created this workflow will be triggered and will do 3 things: | ||
# 1) it will create a directory with an empty upgrade handler in app/upgrades folder | ||
# 2) will increase an E2E_UPGRADE_VERSION variable in Makefile | ||
# 3) create a pull request with these changes to main | ||
|
||
name: On Release Auto Upgrade | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
post_release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run version script | ||
run: bash ./scripts/check_release.sh ${{ github.event.release.tag_name }} | ||
|
||
- name: Run post release script | ||
if: env.MAJOR == 1 # 1 means vX of existing upgrade handler is smaller than A in tag vA.B.C | ||
run: bash ./scripts/empty_upgrade_handler_gen.sh | ||
|
||
- name: Create PR | ||
if: env.MAJOR == 1 | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
base: ${{ github.event.repository.default_branch }} | ||
body: | | ||
Update report | ||
- Created a new empty upgrade handler | ||
- Increased E2E_UPGRADE_VERSION in Makefile by 1 | ||
labels: | | ||
T:auto | ||
C:e2e | ||
C:app-wiring |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- main | ||
- concentrated-liquidity-main | ||
|
||
jobs: | ||
golangci: | ||
|
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,30 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "E2E: (make test-e2e-short)", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "test", | ||
"program": "${workspaceFolder}/tests/e2e", | ||
"args": [ | ||
"-test.timeout", | ||
"30m", | ||
"-test.run", | ||
"IntegrationTestSuite", | ||
"-test.v" | ||
], | ||
"buildFlags": "-tags e2e", | ||
"env": { | ||
"OSMOSIS_E2E": "True", | ||
"OSMOSIS_E2E_SKIP_IBC": "true", | ||
"OSMOSIS_E2E_SKIP_UPGRADE": "true", | ||
"OSMOSIS_E2E_SKIP_CLEANUP": "true", | ||
"OSMOSIS_E2E_SKIP_STATE_SYNC": "true", | ||
"OSMOSIS_E2E_UPGRADE_VERSION": "v13", | ||
"OSMOSIS_E2E_DEBUG_LOG": "true", | ||
}, | ||
"preLaunchTask": "e2e-setup" | ||
} | ||
] | ||
} |
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,12 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "e2e-setup", | ||
"type": "shell", | ||
"command": "make e2e-setup" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.