Skip to content

Commit

Permalink
Make gas the default
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed May 15, 2024
1 parent 39ddb51 commit b87f246
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# test experimental pipeline
- experimental-codegen: true
- experimental-codegen: true
opt-mode: gas
opt-mode: none
- experimental-codegen: true
opt-mode: codesize

Expand All @@ -100,12 +100,10 @@ jobs:
# run across other python versions. we don't really need to run all
# modes across all python versions - one is enough
- python-version: ["3.10", "310"]
opt-mode: gas
- python-version: ["3.12", "312"]
opt-mode: gas

name: "py${{ matrix.python-version[1] || '311' }}\
-opt-${{ matrix.opt-mode || 'none' }}\
-opt-${{ matrix.opt-mode || 'gas' }}\
${{ matrix.debug && '-debug' || '' }}\
${{ matrix.experimental-codegen && '-experimental' || '' }}\
-${{ matrix.evm-version || 'shanghai' }}\
Expand Down Expand Up @@ -134,7 +132,7 @@ jobs:
run: >
pytest
-m "not fuzzing"
--optimize ${{ matrix.opt-mode || 'none' }}
--optimize ${{ matrix.opt-mode || 'gas' }}
--evm-version ${{ matrix.evm-version || 'shanghai' }}
--evm-backend ${{ matrix.evm-backend || 'revm' }}
${{ matrix.debug && '--enable-compiler-debug-mode' || '' }}
Expand Down

0 comments on commit b87f246

Please sign in to comment.