Skip to content

Commit

Permalink
disable "default" ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc committed Oct 9, 2024
1 parent f7fe5c6 commit d4b71e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ jobs:

test-default:
name: Test Default
if: false
needs: [runner]
runs-on: ${{ matrix.os }}
concurrency: ${{ needs.runner.outputs.concurrency-group2 }}
concurrency: ${{ needs.runner.outputs.concurrency-group1 }}
strategy:
matrix:
os: ${{ fromJSON(needs.runner.outputs.runner-matrix2) }}
os: ${{ fromJSON(needs.runner.outputs.runner-matrix1) }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -83,10 +84,10 @@ jobs:
name: Test Scroll
needs: [runner]
runs-on: ${{ matrix.os }}
concurrency: ${{ needs.runner.outputs.concurrency-group1 }}
concurrency: ${{ needs.runner.outputs.concurrency-group2 }}
strategy:
matrix:
os: ${{ fromJSON(needs.runner.outputs.runner-matrix1) }}
os: ${{ fromJSON(needs.runner.outputs.runner-matrix2) }}

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 0 additions & 3 deletions eth-types/src/evm_types/opcode_ids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1247,13 +1247,10 @@ impl FromStr for OpcodeId {
#[cfg(not(feature = "scroll"))]
"SELFDESTRUCT" => OpcodeId::SELFDESTRUCT,
"CHAINID" => OpcodeId::CHAINID,
"opcode 0x48 not defined" => OpcodeId::BASEFEE,
"BASEFEE" => OpcodeId::BASEFEE,
"BLOBHASH" => OpcodeId::INVALID(0x49),
"BLOBBASEFEE" => OpcodeId::INVALID(0x4a),
"opcode 0x5c not defined" => OpcodeId::TLOAD,
"TLOAD" => OpcodeId::TLOAD,
"opcode 0x5d not defined" => OpcodeId::TSTORE,
"TSTORE" => OpcodeId::TSTORE,
_ => {
// Parse an invalid opcode value as reported by geth
Expand Down

0 comments on commit d4b71e7

Please sign in to comment.