ci: bump simulations timeout (#1073)

This commit is contained in:
Federico Kunze Küllmer 2022-05-03 12:25:17 +02:00 committed by GitHub
parent a4b8816f4a
commit 6b1b936c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 12 deletions

View File

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

View File

@ -46,6 +46,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* Move `rpc/ethereum/types` -> `rpc/types` * Move `rpc/ethereum/types` -> `rpc/types`
* Move `rpc/ethereum/backend` -> `rpc/backend` * Move `rpc/ethereum/backend` -> `rpc/backend`
* Move `rpc/ethereum/namespaces` -> `rpc/namespaces/ethereum` * 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 ### Improvements
@ -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. * (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 ## [v0.14.0] - 2022-04-19
### API Breaking ### API Breaking