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

ci: actually enable v2 system test #21539

Merged
merged 27 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1c4061c
ci: actually enable v2 system test
julienrbrt Sep 4, 2024
95e845b
trigger ci
julienrbrt Sep 4, 2024
a0772cb
v2 checks
julienrbrt Sep 4, 2024
e0337c5
unskip tests or add comments
julienrbrt Sep 4, 2024
d9fe1e4
updates
julienrbrt Sep 4, 2024
8ce5a28
Merge branch 'main' into julien/system-test
julienrbrt Sep 4, 2024
2e5d2bf
remove grpc web + don't wait to run system tess
julienrbrt Sep 4, 2024
c8f0407
Merge branch 'main' into julien/system-test
julienrbrt Sep 4, 2024
7fc41ab
Merge branch 'main' into julien/system-test
julienrbrt Sep 6, 2024
f5d7bc7
Merge branch 'main' into julien/system-test
julienrbrt Sep 16, 2024
959c8e3
Merge branch 'main' into julien/system-test
julienrbrt Sep 16, 2024
a272a12
Merge branch 'main' into julien/system-test
julienrbrt Sep 18, 2024
dfd883b
Merge branch 'main' into julien/system-test
julienrbrt Sep 18, 2024
8874079
fix checktx
julienrbrt Sep 18, 2024
fce4282
abci error
julienrbrt Sep 18, 2024
9b7824c
fix halt height, simplify abci error handling (still not working)
julienrbrt Sep 18, 2024
76820d4
debug error
julienrbrt Sep 18, 2024
5bc48d6
Merge branch 'main' into julien/system-test
julienrbrt Sep 18, 2024
4788bfe
typo
julienrbrt Sep 18, 2024
ba2a08f
Merge branch 'main' into julien/system-test
julienrbrt Sep 19, 2024
54242c0
Merge branch 'main' into julien/system-test
julienrbrt Sep 23, 2024
327b2cd
Merge branch 'main' into julien/system-test
julienrbrt Sep 24, 2024
d50a7e3
refactor(core): rm server.TxResult.Code
kocubinski Sep 24, 2024
6146e26
updates
julienrbrt Sep 24, 2024
4fbffca
fix code
julienrbrt Sep 25, 2024
2ed0270
Merge branch 'main' into julien/system-test
julienrbrt Sep 25, 2024
9361c10
Merge branch 'main' into julien/system-test
julienrbrt Sep 26, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ jobs:
- name: system tests v1
if: env.GIT_DIFF
run: |
COSMOS_BUILD_OPTIONS=legacy make test-system
make test-system
- uses: actions/upload-artifact@v3
if: failure()
with:
Expand All @@ -187,7 +187,7 @@ jobs:
- name: system tests v2
if: env.GIT_DIFF
run: |
make test-system
COSMOS_BUILD_OPTIONS=v2 make test-system
- uses: actions/upload-artifact@v3
if: failure()
with:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include scripts/build/build.mk

.DEFAULT_GOAL := help

#? go.sum: Run go mod tidy and ensure dependencies have not been modified
#? go.sum: Run go mod tidy and ensure dependencies have not been modified.
go.sum: go.mod
echo "Ensure dependencies have not been modified ..." >&2
go mod verify
Expand Down
17 changes: 0 additions & 17 deletions scripts/local-testnet.sh

This file was deleted.

Loading