Skip to content

Commit

Permalink
Add more tests to ocr soak test workflow (#13629)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl authored Jun 20, 2024
1 parent 31c0cb7 commit b2de8a3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/on-demand-ocr-soak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ name: On Demand OCR Soak Test
on:
workflow_dispatch:
inputs:
testToRun:
description: Select a test to run
required: true
default: TestOCRSoak
type: choice
options:
- TestOCRSoak
- TestOCRSoak_GethReorgBelowFinality_FinalityTagDisabled
- TestOCRSoak_GethReorgBelowFinality_FinalityTagEnabled
- TestOCRSoak_GasSpike
- TestOCRSoak_ChangeBlockGasLimit
- TestOCRSoak_RPCDownForAllCLNodes
- TestOCRSoak_RPCDownForHalfCLNodes
base64Config:
description: base64-ed config
required: true
Expand Down Expand Up @@ -83,7 +96,7 @@ jobs:
TEST_UPLOAD_CPU_PROFILE: true
TEST_UPLOAD_MEM_PROFILE: true
with:
test_command_to_run: cd ./integration-tests && go test -v -count=1 -run ^TestOCRSoak$ ./soak
test_command_to_run: cd ./integration-tests && go test -v -count=1 -run ^${{ github.event.inputs.testToRun }}$ ./soak
test_download_vendor_packages_command: make gomod
cl_repo: ${{ env.CHAINLINK_IMAGE }}
cl_image_tag: ${{ env.CHAINLINK_VERSION }}
Expand Down

0 comments on commit b2de8a3

Please sign in to comment.