-
Notifications
You must be signed in to change notification settings - Fork 1
build/devenv: support multiple executors in deployment #356
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
base: main
Are you sure you want to change the base?
Conversation
| logger: log. | ||
| Output(zerolog.ConsoleWriter{Out: os.Stderr}). | ||
| Level(zerolog.DebugLevel). | ||
| With(). | ||
| Fields(map[string]any{"component": "CCIP17EVM"}). | ||
| Logger(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We were previously creating the object with just &CCIP17EVM{} which set a null logger, meaning lots of logs were not actually being logged to the console. This fixes that.
|
Code coverage report:
|
| working-directory: build/devenv/tests/e2e | ||
| run: | | ||
| set -o pipefail | ||
| go test -v -timeout 15m -count=1 -run 'TestE2ESmoke' -json \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this due to noise from the comments, they're already unweildly.
| // FundNodes Fund Chainlink nodes for some amount of native/LINK currency | ||
| // FundNodes funds Chainlink nodes for some amount of native/LINK currency | ||
| // using chain-specific clients or CLDF | ||
| FundNodes(ctx context.Context, cls []*nodeset.Input, bc *blockchain.Input, linkAmount, nativeAmount *big.Int) error | ||
| // FundAddresses funds addresses for some amount of native currency | ||
| // using chain-specific clients or CLDF | ||
| FundAddresses(ctx context.Context, bc *blockchain.Input, addresses []protocol.UnknownAddress, nativeAmount *big.Int) error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are very similar - could they be combined gracefully?
Ticket