Skip to content

Commit

Permalink
chore[test]: explicitly specify evm backend in test matrix (#4006)
Browse files Browse the repository at this point in the history
always display the evm backend in the job name
  • Loading branch information
DanielSchiavini authored May 6, 2024
1 parent 6c272b7 commit cd524c1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,26 @@ jobs:
debug: false
opt-mode: gas
evm-version: london
evm-backend: revm

- python-version: ["3.11", "311"]
debug: false
opt-mode: gas
evm-version: paris
evm-backend: revm

# redundant rule, for clarity
- python-version: ["3.11", "311"]
debug: false
opt-mode: gas
evm-version: shanghai
evm-backend: revm

- python-version: ["3.11", "311"]
debug: false
opt-mode: gas
evm-version: cancun
evm-backend: revm

# py-evm rules
- python-version: ["3.11", "311"]
Expand All @@ -114,6 +118,7 @@ jobs:
opt-mode: gas
debug: false
evm-version: shanghai
evm-backend: revm
experimental-codegen: true
# TODO: test experimental_codegen + -Ocodesize

Expand All @@ -123,18 +128,20 @@ jobs:
opt-mode: gas
debug: false
evm-version: shanghai
evm-backend: revm

- python-version: ["3.12", "312"]
opt-mode: gas
debug: false
evm-version: shanghai
evm-backend: revm

name: "py${{ matrix.python-version[1] }}\
-opt-${{ matrix.opt-mode }}\
${{ matrix.debug && '-debug' || '' }}\
${{ matrix.experimental-codegen && '-experimental' || '' }}\
-${{ matrix.evm-version }}\
${{ matrix.evm-backend && format('-{0}', matrix.evm-backend) || '' }}"
-${{ matrix.evm-backend }}"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit cd524c1

Please sign in to comment.