Skip to content
Closed
Show file tree
Hide file tree
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
18 changes: 9 additions & 9 deletions .github/workflows/integration-in-memory-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ jobs:
# We don't directly merge dependabot PRs, so let's not waste the resources
if: github.actor != 'dependabot[bot]'
outputs:
github_ci_changes: ${{ steps.ignore-filter.outputs.changes || steps.changes.outputs.github_ci_changes }}
core_changes: ${{ steps.ignore-filter.outputs.changes || steps.changes.outputs.core_changes }}
ccip_changes: ${{ steps.ignore-filter.outputs.changes || steps.changes.outputs.ccip_changes }}
changes: ${{ steps.ignore-filter.outputs.changes || steps.changes.outputs.changes }}
should_use_self_hosted_runner: ${{ steps.label-runs-on-opt-out.outputs.check-label-found == 'false' }}
steps:
- name: Checkout the repo
Expand All @@ -45,19 +43,21 @@ jobs:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
# This is a valid input, see https://github.com/dorny/paths-filter/pull/226
predicate-quantifier: "every"
filters: |
github_ci_changes:
changes:
- '.github/workflows/integration-in-memory-tests.yml'
- '.github/integration-in-memory-tests.yml'
core_changes:
- '**/*.go'
- '**/*go.sum'
- '**/*go.mod'
- '**/*Dockerfile'
- 'core/**/migrations/*.sql'
- 'core/**/config/**/*.toml'
- 'integration-tests/**/*.toml'
ccip_changes:
- '!system-tests/**'
- '!devenv/**'
- '!core/scripts/cre/**'
- '**/*ccip*'
- '**/*ccip*/**'

Expand All @@ -81,7 +81,7 @@ jobs:
id-token: write
contents: read
needs: changes
if: github.event_name == 'pull_request' && ( needs.changes.outputs.ccip_changes == 'true' || needs.changes.outputs.core_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
if: github.event_name == 'pull_request' && needs.changes.outputs.changes == 'true'
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@78642e9937e8154e65f30461a99a7099c953d35f # 2026-03-12
with:
workflow_name: Run CCIP Integration Tests For PR
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
id-token: write
contents: read
needs: changes
if: github.event_name == 'merge_group' && ( needs.changes.outputs.ccip_changes == 'true' || needs.changes.outputs.core_changes == 'true' || needs.changes.outputs.github_ci_changes == 'true')
if: github.event_name == 'merge_group' && needs.changes.outputs.changes == 'true'
uses: smartcontractkit/.github/.github/workflows/run-e2e-tests.yml@78642e9937e8154e65f30461a99a7099c953d35f # 2026-03-12
with:
workflow_name: Run CCIP Integration Tests For Merge Queue
Expand Down
33 changes: 11 additions & 22 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,32 +108,21 @@ jobs:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
# This is a valid input, see https://github.com/dorny/paths-filter/pull/226
predicate-quantifier: "every"
filters: |
general_changes:
- '.github/workflows/integration-tests.yml'
- '.github/workflows/run-e2e-tests-reusable-workflow.yml'
- '.github/workflows/cre-system-tests.yaml'
- '.github/e2e-tests.yml'
- 'GNUmakefile'
- 'core/chainlink.Dockerfile'
- 'plugins/chainlink.Dockerfile'
core_changes: &core_changes
- '**/*.go'
- '**/*go.sum'
- '**/*go.mod'
- '**/*Dockerfile'
- 'core/**/migrations/*.sql'
- 'core/**/config/**/*.toml'
- 'integration-tests/**/*.toml'
- '{.github/workflows/integration-tests.yml,.github/workflows/run-e2e-tests-reusable-workflow.yml,.github/workflows/cre-system-tests.yaml,.github/e2e-tests.yml,GNUmakefile,core/chainlink.Dockerfile,plugins/chainlink.Dockerfile}'
core_changes:
- '{**/*.go,**/*go.sum,**/*go.mod,**/*Dockerfile,core/**/migrations/*.sql,core/**/config/**/*.toml,integration-tests/**/*.toml}'
- '!system-tests/**'
- '!devenv/**'
- '!core/scripts/cre/**'
cre_changes:
- *core_changes
- 'core/scripts/cre/environment/**/*'
- 'system-tests/**'
- 'plugins/plugins.private.yaml'
- 'plugins/plugins.public.yaml'
- '{**/*.go,**/*go.sum,**/*go.mod,**/*Dockerfile,core/**/migrations/*.sql,core/**/config/**/*.toml,core/scripts/cre/**,system-tests/**,plugins/plugins.private.yaml,plugins/plugins.public.yaml}'
- '!integration-tests/**'
ccip_changes:
- '**/*ccip*'
- '**/*ccip*/**'
- '{**/*ccip*,**/*ccip*/**}'

labels:
name: Get PR labels and set runner labels
Expand Down
2 changes: 2 additions & 0 deletions system-tests/tests/test-helpers/before_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ import (
ttypes "github.com/smartcontractkit/chainlink/system-tests/tests/test-helpers/configuration"
)

// TOOD test comment, remove me

func SetupTestEnvironmentWithConfig(t *testing.T, tconf *ttypes.TestConfig, flags ...string) *ttypes.TestEnvironment {
t.Helper()

Expand Down
Loading