Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
ci: bump simulations timeout (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedekunze authored May 3, 2022
1 parent a4b8816 commit 6b1b936
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:

test-sim-nondeterminism:
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/setup-go@v3
with:
Expand All @@ -134,14 +134,14 @@ jobs:
**/**.go
go.mod
go.sum
- name: Test x/evm simulation nondeterminism
- name: Test simulation nondeterminism
run: |
make test-sim-nondeterminism
if: env.GIT_DIFF

test-sim-random-genesis-fast:
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/setup-go@v3
with:
Expand All @@ -154,14 +154,14 @@ jobs:
**/**.go
go.mod
go.sum
- name: Test x/evm simulation with random genesis
- name: Test simulation with random genesis
run: |
make test-sim-random-genesis-fast
if: env.GIT_DIFF

test-sim-import-export:
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/setup-go@v3
with:
Expand All @@ -174,14 +174,14 @@ jobs:
**/**.go
go.mod
go.sum
- name: Test x/evm simulation import and export
- name: Simulation of import and export genesis
run: |
make test-sim-import-export
if: env.GIT_DIFF

test-sim-after-import:
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 25
steps:
- uses: actions/setup-go@v3
with:
Expand All @@ -194,7 +194,7 @@ jobs:
**/**.go
go.mod
go.sum
- name: Test x/evm simulation after import
- name: Test simulation after import
run: |
make test-sim-after-import
if: env.GIT_DIFF
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* Move `rpc/ethereum/types` -> `rpc/types`
* Move `rpc/ethereum/backend` -> `rpc/backend`
* Move `rpc/ethereum/namespaces` -> `rpc/namespaces/ethereum`
* (rpc) [tharsis#1068](https://github.com/tharsis/ethermint/pull/1068) Fix London hard-fork check logic in JSON-RPC APIs.

### Improvements

Expand All @@ -55,10 +56,6 @@ Ref: https://keepachangelog.com/en/1.0.0/

* (rpc) [tharsis#1059](https://github.com/tharsis/ethermint/pull/1059) Remove unnecessary event filtering logic on the `eth_baseFee` JSON-RPC endpoint.

### API Breaking

* (rpc) [tharsis#1068](https://github.com/tharsis/ethermint/pull/1068) Fix london hardfork check logic in json-rpc apis.

## [v0.14.0] - 2022-04-19

### API Breaking
Expand Down

0 comments on commit 6b1b936

Please sign in to comment.