Skip to content

Commit cfa497b

Browse files
prep work: getting kurtosis assertoor ci to depend on every docker image push workflow (#12115)
- revert changes to ci-cd-main-branch-docker-images.yml - do those changes instead in ci-cd-main-branch-docker-images2.yml (temp copy) for quicker testing off PRs.
1 parent d20bd4d commit cfa497b

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.github/workflows/ci-cd-main-branch-docker-images.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,11 @@ env:
1111
LABEL_DESCRIPTION: "[docker image built on a last commit id from the main branch] Erigon is an implementation of Ethereum (execution layer with embeddable consensus layer), on the efficiency frontier. Archive Node by default."
1212

1313
on:
14-
pull_request:
15-
branches:
16-
- main
17-
types:
18-
- opened
19-
- reopened
20-
- synchronize
21-
- ready_for_review
2214
push:
2315
branches:
2416
- 'main'
17+
paths-ignore:
18+
- '.github/**'
2519
workflow_dispatch:
2620

2721
jobs:

.github/workflows/ci-cd-main-branch-docker-images2.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ env:
1313
on:
1414
push:
1515
branches:
16-
- 'main'
17-
paths-ignore:
18-
- '.github/**'
16+
- 'kurtosis_fix4'
1917
workflow_dispatch:
2018

2119
jobs:

core/vm/interpreter.go

-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,6 @@ func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter {
178178
}
179179
}
180180

181-
func (in *EVMInterpreter) decrementDepth() { in.depth-- }
182-
183181
// Run loops and evaluates the contract's code with the given input data and returns
184182
// the return byte-slice and an error if one occurred.
185183
//

0 commit comments

Comments
 (0)