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

Ethereum bridge VP and e2e test clean up #323

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3b14400
switch from a fork to expectrl v0.5.2
tzemanovic Jun 8, 2022
ae99410
changelog: add #1142
tzemanovic Jul 4, 2022
8f6ed67
[ci] run specific step in docker container
Jul 28, 2022
ed84bda
update wasm checksums
tzemanovic Aug 1, 2022
17fe278
[ci] docker use rust:1.61.0
Aug 1, 2022
a358511
[ci] improve e2e log upload to add validator logs
Aug 3, 2022
92d52d8
test/e2e: update assert_success/failure to first consume output
tzemanovic Jul 26, 2022
0bacc95
changelog: add #247
tzemanovic Aug 1, 2022
0dd32e6
deps: remove ABCI dependencies, use ABCI++ as default
tzemanovic Jul 27, 2022
f5b8ba9
all: remove "ABCI" conditional compilation
tzemanovic Jul 27, 2022
87f162f
make: remove "*-abci-plus-plus"
tzemanovic Jul 27, 2022
f4092ac
shell: process transaction when `ProcessProposal` hasn't (non-validator)
tzemanovic Jul 28, 2022
7c32a5f
test/e2e/ledger: enable ignored tests for ABCI++ workaround
tzemanovic Jul 28, 2022
c856157
scripts/get_tendermint: update for ABCI++ temp fork release
tzemanovic Jul 28, 2022
67eee8c
ledger: refactor tx_queue
tzemanovic Jul 29, 2022
43aa815
ledger: make prepare_proposal and process_proposal stateless
tzemanovic Jul 29, 2022
84ab544
ledger: debug log some ABCI++ requests
tzemanovic Jul 29, 2022
855d0db
[ci] wasm checksums update
github-actions[bot] Jul 29, 2022
818a36a
update the changelog config to namada repo
tzemanovic Aug 1, 2022
53c4be6
cli: update binary names dispatch for namada
tzemanovic Jul 28, 2022
40e6348
Merge branch 'tomas/update-bin-names' (#246)
tzemanovic Aug 4, 2022
63e55d8
Merge branch 'tomas/update-changelog-config' (#248)
tzemanovic Aug 4, 2022
08521de
Merge branch 'tomas/e2e-fix-cmd-assert' (#247)
tzemanovic Aug 4, 2022
604e308
Merge branch 'tomas/remove-abci' (#224)
tzemanovic Aug 4, 2022
ae00c72
Merge branch 'fraccaman+tomas/ci-e2e-validator-logs' (#274)
tzemanovic Aug 4, 2022
8090d99
Merge branch 'tomas/expectrl-switch-from-fork' (#265)
tzemanovic Aug 4, 2022
44b5458
Remove unused Ethereum bridge queue storage key
james-chf Jul 8, 2022
2641800
Ethereum bridge e2e test should use a more realistic key
james-chf Jul 8, 2022
396e4e8
Rename current Ethereum bridge e2e test
james-chf Jul 8, 2022
6c03df9
Whitespace fix
james-chf Jul 8, 2022
dd58e50
Remove dry_run checks
james-chf Jul 8, 2022
eae2e28
Bump ledger and client timeouts
james-chf Jul 8, 2022
fe50966
[ci skip] wasm checksums update
github-actions[bot] Aug 15, 2022
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
2 changes: 1 addition & 1 deletion .changelog/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_url = 'https://github.com/anoma/anoma'
project_url = 'https://github.com/anoma/namada'

# Settings related to components/sub-modules. Only relevant if you make use of
# components/sub-modules.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Switch back from a fork to a newly released version of expectrl
([#1142](https://github.com/anoma/anoma/pull/1142))
2 changes: 2 additions & 0 deletions .changelog/unreleased/testing/247-e2e-fix-cmd-assert.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- E2E: Consume unread output before checking exit status.
([#247](https://github.com/anoma/namada/pull/247))
6 changes: 4 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-wasm:
timeout-minutes: 30
runs-on: ${{ matrix.os }}
container:
container:
image: ghcr.io/anoma/namada:wasm-0.6.1
strategy:
fail-fast: false
Expand Down Expand Up @@ -205,7 +205,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: logs-e2e${{ matrix.make.suffix }}-${{ github.sha }}
path: /tmp/.*/logs/
path: |
/tmp/.*/logs/
/tmp/.*/e2e-test.*/setup/validator-*/.anoma/logs/*.log
retention-days: 5
- name: Print sccache stats
if: always()
Expand Down
Loading