Skip to content
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

Add JD set up in integration-tests #636

Merged
merged 5 commits into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ on:
# Used in some tests to send slack notifications
SLACK_CHANNEL:
required: false
AWS_ACCOUNT_ID_PROD:
required: false

env:
CHAINLINK_IMAGE:
Expand Down Expand Up @@ -675,6 +677,10 @@ jobs:
E2E_TEST_PYROSCOPE_KEY:
${{ matrix.tests.pyroscope_env != '' && secrets.QA_PYROSCOPE_KEY ||
'' }}
E2E_JD_IMAGE:
${{ secrets.AWS_ACCOUNT_ID_PROD }}.dkr.ecr.${{ secrets.AWS_REGION
}}.amazonaws.com/job-distributor
E2E_JD_VERSION: 0.4.0
with:
test_command_to_run:
${{ matrix.tests.test_cmd }} ${{ matrix.tests.test_cmd_opts || '2>&1
Expand All @@ -692,7 +698,9 @@ jobs:
env.CHAINLINK_IMAGE }}
default_e2e_test_chainlink_upgrade_image:
${{ matrix.tests.test_env_vars.E2E_TEST_CHAINLINK_UPGRADE_IMAGE }}
aws_registries: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
aws_registries:
${{ secrets.QA_AWS_ACCOUNT_NUMBER }},${{ secrets.AWS_ACCOUNT_ID_PROD
}}
artifacts_name: ${{ env.TEST_ID }}-test-logs
artifacts_location: |
./integration-tests/smoke/logs/
Expand Down
Loading