Skip to content

Commit

Permalink
Merge branch 'develop' into BCI-3905/update-txm-confirmer-and-finaliz…
Browse files Browse the repository at this point in the history
…er-query-to-skip-evm-receipt
  • Loading branch information
huangzhen1997 authored Aug 15, 2024
2 parents 6358a52 + c0c7649 commit c9db427
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ccip-live-network-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: CCIP Live Network Tests
on:
schedule:
- cron: '0 */6 * * *'
# TODO: TT-1470 - Turn back on as we solidify new realease and image strategy
# schedule:
# - cron: '0 */6 * * *'
workflow_dispatch:
inputs:
base64_test_input : # base64 encoded toml for test input
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ccip-load-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: CCIP Load Test
on:
push:
paths:
- '**/*ccip*'
- '**/*ccip*/**'
branches:
- develop
tags:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ jobs:
- 'core/**/migrations/*.sql'
- 'core/**/config/**/*.toml'
- 'integration-tests/**/*.toml'
ccip-changes:
- '**/*ccip*'
- '**/*ccip*/**'
- name: Ignore Filter On Workflow Dispatch
if: ${{ github.event_name == 'workflow_dispatch' }}
id: ignore-filter
Expand Down Expand Up @@ -514,7 +517,7 @@ jobs:
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/show-test-summary@75a9005952a9e905649cfb5a6971fd9429436acd # v2.3.25

eth-smoke-tests-matrix-ccip:
if: ${{ !contains(join(github.event.pull_request.labels.*.name, ' '), 'skip-smoke-tests') }}
if: steps.changes.outputs.ccip-changes == 'true' && ${{ !contains(join(github.event.pull_request.labels.*.name, ' '), 'skip-smoke-tests') }}
environment: integration
permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion core/capabilities/launcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func (w *launcher) Launch(ctx context.Context, state *registrysyncer.LocalRegist

// NOTE: this is enforced on-chain and so should never happen.
if len(myWorkflowDONs) > 1 {
w.lggr.Error("invariant violation: node is part of more than one workflowDON: this shouldn't happen.")
return errors.New("invariant violation: node is part of more than one workflowDON")
}

for _, rcd := range remoteCapabilityDONs {
Expand Down

0 comments on commit c9db427

Please sign in to comment.