Finalize date on changelog for 2.19.0 (#15670) #426
Workflow file for this run
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
name: CCIP Load Test | |
on: | |
push: | |
paths: | |
- '**/*ccip*' | |
- '**/*ccip*/**' | |
branches: | |
- develop | |
tags: | |
- '*' | |
workflow_dispatch: | |
inputs: | |
test_config_override_path: | |
description: Path to a test config file used to override the default test config | |
required: false | |
type: string | |
test_secrets_override_key: | |
description: 'Key to run tests with custom test secrets' | |
required: false | |
type: string | |
chainlink_version: | |
description: Chainlink image version to use. Commit sha if not provided | |
required: false | |
type: string | |
# Only run 1 of this workflow at a time per PR | |
concurrency: | |
group: load-ccip-tests-chainlink-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-e2e-tests-workflow: | |
name: Run E2E Tests | |
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@5412507526722a7b1c5d719fa686eed5a1bc4035 # [email protected] | |
with: | |
test_path: .github/e2e-tests.yml | |
test_trigger: E2E CCIP Load Tests | |
test_config_override_path: ${{ inputs.test_config_override_path }} | |
chainlink_version: ${{ inputs.chainlink_version || github.sha }} | |
slack_notification_after_tests: always | |
slack_notification_after_tests_channel_id: '#ccip-testing' | |
slack_notification_after_tests_name: CCIP E2E Load Tests | |
test_image_suites: ccip-load | |
secrets: | |
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} | |
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }} | |
QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }} | |
PROD_AWS_ACCOUNT_NUMBER: ${{ secrets.AWS_ACCOUNT_ID_PROD }} | |
QA_PYROSCOPE_INSTANCE: ${{ secrets.QA_PYROSCOPE_INSTANCE }} | |
QA_PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }} | |
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }} | |
GRAFANA_INTERNAL_TENANT_ID: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
GRAFANA_INTERNAL_BASIC_AUTH: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
GRAFANA_INTERNAL_HOST: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
GRAFANA_INTERNAL_URL_SHORTENER_TOKEN: ${{ secrets.GRAFANA_INTERNAL_URL_SHORTENER_TOKEN }} | |
LOKI_TENANT_ID: ${{ secrets.LOKI_TENANT_ID }} | |
LOKI_URL: ${{ secrets.LOKI_URL }} | |
LOKI_BASIC_AUTH: ${{ secrets.LOKI_BASIC_AUTH }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_REGION: ${{ secrets.QA_AWS_REGION }} | |
AWS_OIDC_IAM_ROLE_VALIDATION_PROD_ARN: ${{ secrets.AWS_OIDC_IAM_ROLE_VALIDATION_PROD_ARN }} | |
AWS_API_GW_HOST_GRAFANA: ${{ secrets.AWS_API_GW_HOST_GRAFANA }} | |
TEST_SECRETS_OVERRIDE_BASE64: ${{ secrets[inputs.test_secrets_override_key] }} | |
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }} | |
SLACK_API_KEY: ${{ secrets.QA_SLACK_API_KEY }} |