Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep work: getting kurtosis assertoor ci to depend on every docker image push workflow #12115

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/ci-cd-main-branch-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,11 @@ env:
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."

on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- 'main'
paths-ignore:
- '.github/**'
workflow_dispatch:

jobs:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/ci-cd-main-branch-docker-images2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ env:
on:
push:
branches:
- 'main'
paths-ignore:
- '.github/**'
- 'kurtosis_fix4'
workflow_dispatch:

jobs:
Expand Down
2 changes: 0 additions & 2 deletions core/vm/interpreter.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,6 @@ func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter {
}
}

func (in *EVMInterpreter) decrementDepth() { in.depth-- }

// Run loops and evaluates the contract's code with the given input data and returns
// the return byte-slice and an error if one occurred.
//
Expand Down
Loading