-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into BCF-3406-Create-EV…
…M-Implementation-of-Keystore
- Loading branch information
Showing
265 changed files
with
9,555 additions
and
8,404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Potential bug introduced from chain selector refactor, not causing issue now since only EVM is used, but need to fix #bugfix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Adding OCR3 promwrapper to LLO #internal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Reporting number of OCR3 instances running using promwrapper #internal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Prometheus observability layer added to OCR3 Reporting Plugins #internal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#internal refactor: inject ocr secrets via env instead of config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
Fix TransactionSender go routine leak. #bugfix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#internal refactor update nodes changeset to support mcms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#bugfix fix: duplicate chain id in chain config dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": minor | ||
--- | ||
|
||
Change ChainWriter naming to ContractWriter to consolidate Relayer chain interfaces #internal |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Setup CI Core Tests | ||
description: | | ||
Shared setup steps for ci-core. | ||
Note: Other actions should not be called from this action. There is | ||
weird behavior when nesting reusable actions. | ||
inputs: | ||
|
||
go-mod-download-directory: | ||
description: | | ||
The directory to run go mod download in. If not provided, it will not run go mod download. | ||
required: false | ||
default: "" | ||
|
||
db-url: | ||
description: | | ||
The expected database URL | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Touching core/web/assets/index.html | ||
shell: bash | ||
run: mkdir -p core/web/assets && touch core/web/assets/index.html | ||
|
||
- name: Download Go vendor packages | ||
shell: bash | ||
run: go mod download | ||
|
||
- name: Go Mod Download (optional) | ||
if: ${{ inputs.go-mod-download-directory != '' }} | ||
shell: bash | ||
working-directory: ${{ inputs.go-mod-download-directory }} | ||
run: go mod download | ||
|
||
- name: Build binary | ||
shell: bash | ||
run: go build -o chainlink.test . | ||
|
||
- name: Setup DB | ||
shell: bash | ||
run: ./chainlink.test local db preparetest | ||
env: | ||
CL_DATABASE_URL: ${{ inputs.db-url }} | ||
|
||
- name: Install LOOP Plugins | ||
shell: bash | ||
run: | | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-feeds) | ||
go install ./cmd/chainlink-feeds | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-data-streams) | ||
go install ./mercury/cmd/chainlink-mercury | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-solana) | ||
go install ./pkg/solana/cmd/chainlink-solana | ||
popd | ||
pushd $(go list -m -f "{{.Dir}}" github.com/smartcontractkit/chainlink-starknet/relayer) | ||
go install ./pkg/chainlink/cmd/chainlink-starknet | ||
popd | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,17 +20,22 @@ on: | |
required: true | ||
default: benchmark | ||
type: string | ||
team: | ||
description: Team to run the tests for (e.g. BIX, CCIP) | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
run-e2e-tests-workflow: | ||
name: Run E2E Tests | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@0d4a2b2b009c87b5c366d0b97f7a8d7de2f60760 | ||
with: | ||
test_path: .github/e2e-tests.yml | ||
test_ids: '${{ inputs.testType }}/automation_test.go:TestAutomationBenchmark' | ||
test_config_override_path: ${{ inputs.test_config_override_path }} | ||
SLACK_USER: ${{ inputs.slackMemberID }} | ||
SLACK_CHANNEL: C03KJ5S7KEK | ||
team: ${{ inputs.team }} | ||
secrets: | ||
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | ||
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,18 +14,23 @@ on: | |
description: Notifies test results (Not your @) | ||
required: true | ||
default: U02Q14G80TY | ||
type: string | ||
type: string | ||
team: | ||
description: Team to run the tests for (e.g. BIX, CCIP) | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
run-e2e-tests-workflow: | ||
name: Run E2E Tests | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@0d4a2b2b009c87b5c366d0b97f7a8d7de2f60760 | ||
with: | ||
test_path: .github/e2e-tests.yml | ||
test_ids: 'load/automationv2_1/automationv2_1_test.go:TestLogTrigger' | ||
test_config_override_path: ${{ inputs.test_config_override_path }} | ||
SLACK_USER: ${{ inputs.slackMemberID }} | ||
SLACK_CHANNEL: C03KJ5S7KEK | ||
team: ${{ inputs.team }} | ||
secrets: | ||
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | ||
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,11 @@ on: | |
with_existing_remote_runner_version: | ||
description: 'Tag of the existing remote runner version to use (Leave empty to build from head/ref)' | ||
required: false | ||
type: string | ||
type: string | ||
team: | ||
description: Team to run the tests for (e.g. BIX, CCIP) | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
# Set tests to run based on the workflow inputs | ||
|
@@ -153,14 +157,15 @@ jobs: | |
call-run-e2e-tests-workflow: | ||
name: Run E2E Tests | ||
needs: set-tests-to-run | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@0d4a2b2b009c87b5c366d0b97f7a8d7de2f60760 | ||
with: | ||
test_path: .github/e2e-tests.yml | ||
test_list: ${{ needs.set-tests-to-run.outputs.test_list }} | ||
require_chainlink_image_versions_in_qa_ecr: ${{ needs.set-tests-to-run.outputs.require_chainlink_image_versions_in_qa_ecr }} | ||
with_existing_remote_runner_version: ${{ github.event.inputs.with_existing_remote_runner_version }} | ||
test_log_upload_on_failure: true | ||
test_log_upload_retention_days: 7 | ||
team: ${{ inputs.team }} | ||
secrets: | ||
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | ||
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,12 @@ on: | |
# types: [ completed ] | ||
# branches: [ develop ] | ||
workflow_dispatch: | ||
inputs: | ||
team: | ||
description: Team to run the tests for (e.g. BIX, CCIP) | ||
required: true | ||
default: "ccip" | ||
type: string | ||
|
||
# Only run 1 of this workflow at a time per PR | ||
concurrency: | ||
|
@@ -15,7 +21,7 @@ concurrency: | |
jobs: | ||
run-e2e-tests-workflow: | ||
name: Run E2E Tests | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@0d4a2b2b009c87b5c366d0b97f7a8d7de2f60760 | ||
with: | ||
test_path: .github/e2e-tests.yml | ||
chainlink_version: ${{ github.sha }} | ||
|
@@ -25,6 +31,7 @@ jobs: | |
slack_notification_after_tests: on_failure | ||
slack_notification_after_tests_channel_id: '#ccip-testing' | ||
slack_notification_after_tests_name: CCIP Chaos E2E Tests | ||
team: ${{ inputs.team }} | ||
secrets: | ||
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | ||
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,12 @@ on: | |
chainlink_version: | ||
description: Chainlink image version to use. Commit sha if not provided | ||
required: false | ||
type: string | ||
type: string | ||
team: | ||
description: Team to run the tests for (e.g. BIX, CCIP) | ||
required: true | ||
default: "ccip" | ||
type: string | ||
|
||
# Only run 1 of this workflow at a time per PR | ||
concurrency: | ||
|
@@ -31,7 +36,7 @@ concurrency: | |
jobs: | ||
run-e2e-tests-workflow: | ||
name: Run E2E Tests | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | ||
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@0d4a2b2b009c87b5c366d0b97f7a8d7de2f60760 | ||
with: | ||
test_path: .github/e2e-tests.yml | ||
test_trigger: E2E CCIP Load Tests | ||
|
@@ -41,6 +46,7 @@ jobs: | |
slack_notification_after_tests_channel_id: '#ccip-testing' | ||
slack_notification_after_tests_name: CCIP E2E Load Tests | ||
test_image_suites: ccip-load | ||
team: ${{ inputs.team }} | ||
secrets: | ||
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | ||
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | ||
|
Oops, something went wrong.