Skip to content

Commit

Permalink
fix: e2e-evm-cron.yml (#2111)
Browse files Browse the repository at this point in the history
* fix: e2e-evm-cron.yml

* Update e2e-evm-cron.yml

* chore(e2e-evm-cron.yml): correct the GH secret name to MNEMONIC_TESTNET1_VALIDATOR

* chore: changelog update

---------

Co-authored-by: Oleg Nikonychev <[email protected]>
  • Loading branch information
Unique-Divine and onikonychev authored Nov 12, 2024
1 parent f5d639d commit 04ccbcf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/e2e-evm-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: "Install just"
# casey/just: https://just.systems/man/en/chapter_6.html
# taiki-e/install-action: https://github.com/taiki-e/install-action
uses: taiki-e/install-action@just

- name: 'just install'
run: just install
working-directory: 'evm-e2e'

- name: 'Run tests (just test-basic)'
run: just test-basic
working-directory: 'evm-e2e'
# 2024-11-12: We're using the Testnet 1 validator account because it has
# a lot of funds in NIBI.
env:
JSON_RPC_ENDPOINT: https://evm-rpc.testnet-1.nibiru.fi
MNEMONIC: ${{ secrets.WALLET_MNEMONIC_TESTNET }}
MNEMONIC: ${{ secrets.MNEMONIC_TESTNET1_VALIDATOR }}

- name: Send failure to slack channel
if: always()
Expand All @@ -44,4 +51,4 @@ jobs:
notification_title: 'EVM basic tests failed on Testnet'
message_format: '{emoji} *{workflow}* {status_message} Run: {run_url}'
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TESTNET }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ tests for race conditions within funtoken precompile
feat(evm-funtoken-precompile): Implement methods: balance, bankBalance, whoAmI
- [#2108](https://github.com/NibiruChain/nibiru/pull/2108) - fix(evm): removed deprecated root key from eth_getTransactionReceipt
- [#2110](https://github.com/NibiruChain/nibiru/pull/2110) - fix(evm): Restore StateDB to its state prior to ApplyEvmMsg call to ensure deterministic gas usage. This fixes an issue where the StateDB pointer field in NibiruBankKeeper was being updated during readonly query endpoints like eth_estimateGas, leading to non-deterministic gas usage in subsequent transactions.
- [#2111](https://github.com/NibiruChain/nibiru/pull/2111) - fix: e2e-evm-cron.yml

#### Nibiru EVM | Before Audit 1 - 2024-10-18

Expand Down

0 comments on commit 04ccbcf

Please sign in to comment.