Skip to content

Commit 8b676ad

Browse files
committed
Merge branch 'develop' of github.com:smartcontractkit/chainlink into Update-evm-msghasher-destexecdata-with-extradatacodec
2 parents 9456864 + aea1824 commit 8b676ad

File tree

427 files changed

+12828
-3955
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

427 files changed

+12828
-3955
lines changed

.changeset/chatty-pears-ring.md

-5
This file was deleted.

.changeset/chilled-papayas-jump.md

-5
This file was deleted.

.changeset/cold-goats-vanish.md

-5
This file was deleted.

.changeset/cuddly-hats-help.md

-5
This file was deleted.

.changeset/eight-ads-fetch.md

-5
This file was deleted.

.changeset/eighty-pianos-invite.md

+5

.changeset/fast-pigs-behave.md

+5

.changeset/few-vans-wait.md

-5
This file was deleted.

.changeset/fresh-meals-admire.md

-5
This file was deleted.

.changeset/fuzzy-taxis-hunt.md

-5
This file was deleted.

.changeset/giant-dancers-tie.md

-5
This file was deleted.

.changeset/hip-hats-exercise.md

+5

.changeset/honest-knives-reflect.md

-5
This file was deleted.

.changeset/hungry-boats-kneel.md

-5
This file was deleted.

.changeset/large-mice-drop.md

-5
This file was deleted.

.changeset/mean-pianos-train.md

-5
This file was deleted.

.changeset/mean-seahorses-glow.md

+5

.changeset/mighty-waves-change.md

-5
This file was deleted.

.changeset/nasty-kids-look.md

-5
This file was deleted.

.changeset/ninety-ways-try.md

-5
This file was deleted.

.changeset/old-pets-divide.md

-5
This file was deleted.

.changeset/orange-dragons-applaud.md

-5
This file was deleted.

.changeset/polite-spiders-tan.md

-5
This file was deleted.

.changeset/rich-frogs-work.md

-5
This file was deleted.

.changeset/selfish-news-chew.md

-5
This file was deleted.

.changeset/serious-suns-flow.md

-5
This file was deleted.

.changeset/short-buckets-smash.md

-5
This file was deleted.

.changeset/silent-ducks-report.md

-5
This file was deleted.

.changeset/silver-eels-turn.md

+5

.changeset/six-camels-smell.md

-5
This file was deleted.

.changeset/sixty-eagles-punch.md

-11
This file was deleted.

.changeset/tame-hats-check.md

-5
This file was deleted.

.changeset/tame-paws-repeat.md

+5

.changeset/three-meals-promise.md

-5
This file was deleted.

.changeset/twelve-games-sneeze.md

-5
This file was deleted.

.changeset/violet-bears-try.md

-5
This file was deleted.

.changeset/violet-files-rush.md

-5
This file was deleted.

.changeset/wild-bikes-guess.md

-5
This file was deleted.

.changeset/wise-donkeys-check.md

-5
This file was deleted.

.changeset/wise-items-brush.md

-5
This file was deleted.

.changeset/yellow-dodos-run.md

-5
This file was deleted.

.changeset/yellow-spies-fail.md

-5
This file was deleted.

.changeset/young-terms-prove.md

-5
This file was deleted.

.github/e2e-tests.yml

+45-3
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ runner-test-matrix:
190190
triggers:
191191
- PR Workflow Engine E2E Core Tests
192192
- Nightly E2E Tests
193-
test_cmd: cd system-tests/tests && go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_SingleDon_MockedPrice)$" -timeout 30m -count=1 -test.parallel=1 -json
193+
test_cmd: cd system-tests/tests && { go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_SingleDon_MockedPrice)$" -timeout 30m -count=1 -test.parallel=1 -json; exit_code=$?; ../../tools/ci/wait-for-containers-to-stop.sh 30; exit $exit_code; } # Sleep to allow testcontainers to stop
194194
pyroscope_env: ci-smoke-capabilities-evm-simulated
195195
test_env_vars:
196196
E2E_TEST_CHAINLINK_VERSION: '{{ env.DEFAULT_CHAINLINK_PLUGINS_VERSION }}' # This is the chainlink version that has the plugins
@@ -208,7 +208,7 @@ runner-test-matrix:
208208
triggers:
209209
- PR Workflow Engine E2E Core Tests
210210
- Nightly E2E Tests
211-
test_cmd: cd system-tests/tests && go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_GatewayDon_MockedPrice)$" -timeout 30m -count=1 -test.parallel=1 -json
211+
test_cmd: cd system-tests/tests && { go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_GatewayDon_MockedPrice)$" -timeout 30m -count=1 -test.parallel=1 -json; exit_code=$?; ../../tools/ci/wait-for-containers-to-stop.sh 30; exit $exit_code; } # Sleep to allow testcontainers to stop
212212
pyroscope_env: ci-smoke-capabilities-evm-simulated
213213
test_env_vars:
214214
E2E_TEST_CHAINLINK_VERSION: '{{ env.DEFAULT_CHAINLINK_PLUGINS_VERSION }}' # This is the chainlink version that has the plugins
@@ -226,7 +226,7 @@ runner-test-matrix:
226226
triggers:
227227
- PR Workflow Engine E2E Core Tests
228228
- Nightly E2E Tests
229-
test_cmd: cd system-tests/tests && go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_ThreeDons_LivePrice)$" -timeout 30m -count=1 -test.parallel=1 -json
229+
test_cmd: cd system-tests/tests && { go test github.com/smartcontractkit/chainlink/system-tests/tests/smoke/capabilities -v -run "^(TestKeystoneWithOCR3Workflow_ThreeDons_LivePrice)$" -timeout 30m -count=1 -test.parallel=1 -json; exit_code=$?; ../../tools/ci/wait-for-containers-to-stop.sh 30; exit $exit_code; } # Sleep to allow testcontainers to stop
230230
pyroscope_env: ci-smoke-capabilities-evm-simulated
231231
test_env_vars:
232232
E2E_TEST_CHAINLINK_VERSION: '{{ env.DEFAULT_CHAINLINK_PLUGINS_VERSION }}' # This is the chainlink version that has the plugins
@@ -1019,6 +1019,20 @@ runner-test-matrix:
10191019
E2E_JD_VERSION: 0.9.0
10201020
CCIP_V16_TEST_ENV: docker
10211021

1022+
- id: smoke/ccip/ccip_migration_to_v_1_6_test.go:^TestV1_5_Message_RMNRemote_Curse_Uncurse$
1023+
path: integration-tests/smoke/ccip/ccip_migration_to_v_1_6_test.go
1024+
test_env_type: docker
1025+
runs_on: ubuntu-latest
1026+
triggers:
1027+
- PR E2E Core Tests
1028+
- Nightly E2E Tests
1029+
test_cmd: cd integration-tests && go test github.com/smartcontractkit/chainlink/integration-tests/smoke/ccip -v -run ^TestV1_5_Message_RMNRemote_Curse_Uncurse$ -timeout 18m -count=1 -test.parallel=1 -json
1030+
pyroscope_env: ci-smoke-ccipv1_6-evm-simulated
1031+
test_env_vars:
1032+
E2E_TEST_SELECTED_NETWORK: SIMULATED_1,SIMULATED_2
1033+
E2E_JD_VERSION: 0.6.0
1034+
CCIP_V16_TEST_ENV: docker
1035+
10221036
- id: smoke/ccip/ccip_rmn_test.go:^TestRMN_TwoMessagesOnTwoLanesIncludingBatching$
10231037
path: integration-tests/smoke/ccip/ccip_rmn_test.go
10241038
test_env_type: docker
@@ -1179,6 +1193,34 @@ runner-test-matrix:
11791193
E2E_RMN_AFN2PROXY_VERSION: 678509b
11801194
CCIP_V16_TEST_ENV: docker
11811195

1196+
- id: smoke/ccip/ccip_jobspec_test.go.go:TestDeleteCCIPJobs
1197+
path: integration-tests/smoke/ccip/ccip_jobspec_test.go
1198+
test_env_type: docker
1199+
runs_on: ubuntu-latest
1200+
triggers:
1201+
- PR E2E Core Tests
1202+
- Nightly E2E Tests
1203+
test_cmd: cd integration-tests && go test github.com/smartcontractkit/chainlink/integration-tests/smoke/ccip -v -run ^TestDeleteCCIPJobs$ -count=1 -test.parallel=1 -json
1204+
pyroscope_env: ci-smoke-ccipv1_6-evm-simulated
1205+
test_env_vars:
1206+
E2E_TEST_SELECTED_NETWORK: SIMULATED_1,SIMULATED_2
1207+
E2E_JD_VERSION: 0.9.0
1208+
CCIP_V16_TEST_ENV: docker
1209+
1210+
- id: smoke/ccip/ccip_jobspec_test.go.go:TestRevokeJobs
1211+
path: integration-tests/smoke/ccip/ccip_jobspec_test.go
1212+
test_env_type: docker
1213+
runs_on: ubuntu-latest
1214+
triggers:
1215+
- PR E2E Core Tests
1216+
- Nightly E2E Tests
1217+
test_cmd: cd integration-tests && go test github.com/smartcontractkit/chainlink/integration-tests/smoke/ccip -v -run ^TestRevokeJobs$ -count=1 -test.parallel=1 -json
1218+
pyroscope_env: ci-smoke-ccipv1_6-evm-simulated
1219+
test_env_vars:
1220+
E2E_TEST_SELECTED_NETWORK: SIMULATED_1,SIMULATED_2
1221+
E2E_JD_VERSION: 0.9.0
1222+
CCIP_V16_TEST_ENV: docker
1223+
11821224
# END: CCIPv1.6 tests
11831225

11841226
# START: CCIP tests

.github/integration-in-memory-tests.yml

+16
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,22 @@ runner-test-matrix:
4646
- PR Integration CCIP Tests
4747
test_cmd: cd integration-tests/smoke/ccip && go test ccip_batching_test.go -timeout 25m -test.parallel=2 -count=1 -json
4848

49+
- id: smoke/ccip/ccip_migration_to_v_1_6_test.go:^TestV1_5_Message_RMNRemote$
50+
path: integration-tests/smoke/ccip/ccip_migration_to_v_1_6_test.go
51+
test_env_type: in-memory
52+
runs_on: ubuntu-latest
53+
triggers:
54+
- PR Integration CCIP Tests
55+
test_cmd: cd integration-tests && go test github.com/smartcontractkit/chainlink/integration-tests/smoke/ccip -v -run ^TestV1_5_Message_RMNRemote$ -timeout 18m -count=1 -test.parallel=1 -json
56+
57+
- id: smoke/ccip/ccip_migration_to_v_1_6_test.go:^TestV1_5_Message_RMNRemote_Curse$
58+
path: integration-tests/smoke/ccip/ccip_migration_to_v_1_6_test.go
59+
test_env_type: in-memory
60+
runs_on: ubuntu-latest
61+
triggers:
62+
- PR Integration CCIP Tests
63+
test_cmd: cd integration-tests && go test github.com/smartcontractkit/chainlink/integration-tests/smoke/ccip -v -run ^TestV1_5_Message_RMNRemote_Curse$ -timeout 18m -count=1 -test.parallel=1 -json
64+
4965
- id: smoke/ccip/ccip_add_chain_test.go:*
5066
path: integration-tests/smoke/ccip/ccip_add_chain_test.go
5167
test_env_type: in-memory

.github/workflows/automation-benchmark-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828
jobs:
2929
run-e2e-tests-workflow:
3030
name: Run E2E Tests
31-
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@70a84a2a8546ea6dd8778217df16558e9a5afba3
31+
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@83c6d1a2ef58364ca7c5792ab56f44f7f6995a0c
3232
with:
3333
test_path: .github/e2e-tests.yml
3434
test_ids: '${{ inputs.testType }}/automation_test.go:TestAutomationBenchmark'

.github/workflows/automation-load-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
run-e2e-tests-workflow:
2525
name: Run E2E Tests
26-
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@70a84a2a8546ea6dd8778217df16558e9a5afba3
26+
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@83c6d1a2ef58364ca7c5792ab56f44f7f6995a0c
2727
with:
2828
test_path: .github/e2e-tests.yml
2929
test_ids: 'load/automationv2_1/automationv2_1_test.go:TestLogTrigger'

.github/workflows/automation-nightly-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
run-e2e-tests-workflow:
1212
name: Run E2E Tests
13-
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@70a84a2a8546ea6dd8778217df16558e9a5afba3
13+
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@83c6d1a2ef58364ca7c5792ab56f44f7f6995a0c
1414
with:
1515
test_path: .github/e2e-tests.yml
1616
test_trigger: Automation Nightly Tests

0 commit comments

Comments
 (0)