Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Sep 26, 2024
1 parent f036162 commit 42fe485
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation-benchmark-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_ids: '${{ inputs.testType }}/automation_test.go:TestAutomationBenchmark'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_ids: 'load/automationv2_1/automationv2_1_test.go:TestLogTrigger'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_trigger: Automation Nightly Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automation-ondemand-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
call-run-e2e-tests-workflow:
name: Run E2E Tests
needs: set-tests-to-run
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_list: ${{ needs.set-tests-to-run.outputs.test_list }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ccip-chaos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
chainlink_version: ${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ccip-load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_trigger: E2E CCIP Load Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-chaos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
chainlink_version: ${{ github.sha }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
contents: read
needs: [build-chainlink, changes]
if: github.event_name == 'pull_request' && ( needs.changes.outputs.core_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
workflow_name: Run Core E2E Tests For PR
chainlink_version: ${{ inputs.evm-ref || github.sha }}
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
contents: read
needs: [build-chainlink, changes]
if: github.event_name == 'merge_group' && ( needs.changes.outputs.core_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
workflow_name: Run Core E2E Tests For Merge Queue
chainlink_version: ${{ inputs.evm-ref || github.sha }}
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
contents: read
needs: [build-chainlink, changes]
if: github.event_name == 'pull_request' && (needs.changes.outputs.ccip_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
workflow_name: Run CCIP E2E Tests For PR
chainlink_version: ${{ inputs.evm-ref || github.sha }}
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
contents: read
needs: [build-chainlink, changes]
if: github.event_name == 'merge_group' && (needs.changes.outputs.ccip_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
workflow_name: Run CCIP E2E Tests For Merge Queue
chainlink_version: ${{ inputs.evm-ref || github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-demand-ocr-soak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ on:
jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
test_path: .github/e2e-tests.yml
test_ids: ${{ inputs.testToRun}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-demand-vrfv2-performance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
needs: set-tests-to-run
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
custom_test_list_json: ${{ needs.set-tests-to-run.outputs.test_list }}
chainlink_version: ${{ inputs.chainlink_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-demand-vrfv2-smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
needs: set-tests-to-run
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
custom_test_list_json: ${{ needs.set-tests-to-run.outputs.test_list }}
chainlink_version: ${{ inputs.chainlink_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-demand-vrfv2plus-performance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
needs: set-tests-to-run
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
custom_test_list_json: ${{ needs.set-tests-to-run.outputs.test_list }}
chainlink_version: ${{ inputs.chainlink_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-demand-vrfv2plus-smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run-e2e-tests-workflow:
name: Run E2E Tests
needs: set-tests-to-run
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
custom_test_list_json: ${{ needs.set-tests-to-run.outputs.test_list }}
chainlink_version: ${{ inputs.chainlink_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-nightly-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
call-run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
chainlink_version: develop
test_path: .github/e2e-tests.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-selected-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ run-name: ${{ inputs.workflow_run_name }}
jobs:
call-run-e2e-tests-workflow:
name: Run E2E Tests
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@65e5ec4c28006e0a9b6a18529f4751748d9e2ca5
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@13c1983a7f66d14bb2c861c97b50ed56ddfbcd3e
with:
chainlink_version: ${{ github.event.inputs.chainlink_version }}
test_path: .github/e2e-tests.yml
Expand Down

0 comments on commit 42fe485

Please sign in to comment.