Skip to content

Commit

Permalink
Fix naming for integration-tests.yml file to e2e-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Nov 22, 2024
1 parent 6ba8f4a commit 73e4131
Show file tree
Hide file tree
Showing 7 changed files with 794 additions and 456 deletions.
4 changes: 2 additions & 2 deletions .github/E2E_TESTS_ON_GITHUB_CI.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ These workflows are designed to run on every commit in a PR, nightly or before r

Tests triggered on every commit in a PR to ensure changes do not introduce regressions.

**Workflow:** [integration-tests.yml](https://github.com/smartcontractkit/chainlink/blob/develop/.github/workflows/integration-tests.yml)
**Workflow:** [e2e-tests.yml](https://github.com/smartcontractkit/chainlink/blob/develop/.github/workflows/e2e-tests.yml)

### Nightly E2E Tests

Expand All @@ -36,7 +36,7 @@ E2E tests triggered on a release tag.

#### Integration (smoke) Tests

**Workflow:** [integration-tests.yml](https://github.com/smartcontractkit/chainlink/blob/develop/.github/workflows/integration-tests.yml)
**Workflow:** [e2e-tests.yml](https://github.com/smartcontractkit/chainlink/blob/develop/.github/workflows/e2e-tests.yml)

#### Client Compatibility Tests

Expand Down
1 change: 0 additions & 1 deletion .github/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,6 @@ runner-test-matrix:
test_env_vars:
E2E_TEST_SELECTED_NETWORK: SIMULATED_1,SIMULATED_2
E2E_JD_VERSION: 0.6.0
PG_INSTANCE: true

- id: smoke/ccip/ccip_messaging_test.go:*
path: integration-tests/smoke/ccip/ccip_messaging_test.go
Expand Down
23 changes: 23 additions & 0 deletions .github/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This file specifies the GitHub runner for each integration test and is utilized by all integration CI workflows.
#
# Each entry in this file includes the following:
# - The GitHub runner (runs_on field) that will execute tests.
# - The tests that will be run by the runner.
# - The triggers (e.g., Run PR Integration Tests) that should trigger these tests.
#
runner-test-matrix:
# START: CCIPv1.6 tests

- id: smoke/ccip/ccip_messaging_test.go:*
path: integration-tests/smoke/ccip/ccip_messaging_test.go
test_env_type: docker
runs_on: ubuntu-latest
triggers:
- PR Integration Core Tests
test_cmd: cd integration-tests/smoke/ccip && go test ccip_messaging_test.go -timeout 12m -test.parallel=2 -count=1 -json
test_env_vars:
E2E_TEST_SELECTED_NETWORK: SIMULATED_1,SIMULATED_2
E2E_JD_VERSION: 0.6.0
PG_INSTANCE: true

# END: CCIP tests
Loading

0 comments on commit 73e4131

Please sign in to comment.