Skip to content

Commit

Permalink
Merge branch 'develop' into FUN-1340-L1-L2-fee-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
KuphJr authored Jun 4, 2024
2 parents e6238e7 + 9a7a348 commit e400f89
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
with:
channel-id: "#team-core"
slack-message: "golangci-lint failed: ${{ job.html_url }}\n${{ format('https://github.com/smartcontractkit/chainlink/actions/runs/{0}', github.run_id) }}"
slack-message: "golangci-lint failed: \n${{ format('https://github.com/{0}/actions/runs/{1}', github.repository, github.run_id) }}"

core:
env:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
with:
channel-id: "#topic-data-races"
slack-message: "Race tests failed: ${{ job.html_url }}\n${{ format('https://github.com/smartcontractkit/chainlink/actions/runs/{0}', github.run_id) }}"
slack-message: "Race tests failed: \n${{ format('https://github.com/{0}/actions/runs/{1}', github.repository, github.run_id) }}"
- name: Collect Path Output
id: collect-path-output
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
with:
channel-id: "#team-test-tooling-internal"
slack-message: ":x: :mild-panic-intensifies: Publish Integration Test Image failed: ${{ job.html_url }}\n${{ format('https://github.com/smartcontractkit/chainlink/actions/runs/{0}', github.run_id) }}"
slack-message: ":x: :mild-panic-intensifies: Publish Integration Test Image failed: \n${{ format('https://github.com/{0}/actions/runs/{1}', github.repository, github.run_id) }}"
build-chainlink-image:
environment: integration
# Only run this build for workflow_dispatch
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 @@ -27,9 +27,9 @@ on:
type: string

# Only run 1 of this workflow at a time per PR
# concurrency:
# group: integration-tests-chainlink-${{ github.sha }}-${{ github.run_id }}-${{ inputs.distinct_run_name }}
# cancel-in-progress: true
concurrency:
group: ${{ github.ref }}-${{ github.repository }}-${{ github.event_name }}--e2e-tests-${{ inputs.distinct_run_name }}
cancel-in-progress: true

env:
# for run-test variables and environment
Expand Down Expand Up @@ -967,7 +967,7 @@ jobs:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
with:
channel-id: "#team-test-tooling-internal"
slack-message: ":x: :mild-panic-intensifies: Node Migration Tests Failed: ${{ job.html_url }}\n${{ format('https://github.com/smartcontractkit/chainlink/actions/runs/{0}', github.run_id) }}"
slack-message: ":x: :mild-panic-intensifies: Node Migration Tests Failed: \n${{ format('https://github.com/{0}/actions/runs/{1}', github.repository, github.run_id) }}"

## Solana Section
get_solana_sha:
Expand Down
8 changes: 4 additions & 4 deletions integration-tests/smoke/log_poller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ func TestLogPollerFewFiltersFinalityTag(t *testing.T) {

// consistency test with no network disruptions with approximate emission of 1000-1100 logs per second for ~110-120 seconds
// 900 filters are registered
func TestLogPollerManyFiltersFixedDepth(t *testing.T) {
t.Skip("Execute manually, when needed as it runs for a long time")
func XTestLogPollerManyFiltersFixedDepth(t *testing.T) {
t.Skip("Execute manually, when needed as it runs for a long time, remove the X from the test name to run it")
executeBasicLogPollerTest(t, test_env.DefaultChainlinkNodeLogScannerSettings)
}

func TestLogPollerManyFiltersFinalityTag(t *testing.T) {
t.Skip("Execute manually, when needed as it runs for a long time")
func XTestLogPollerManyFiltersFinalityTag(t *testing.T) {
t.Skip("Execute manually, when needed as it runs for a long time, remove the X from the test name to run it")
executeBasicLogPollerTest(t, test_env.DefaultChainlinkNodeLogScannerSettings)
}

Expand Down
6 changes: 0 additions & 6 deletions integration-tests/smoke/log_poller_test.go_test_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@
},
{
"name": "TestLogPollerReplayFinalityTag"
},
{
"name": "TestLogPollerManyFiltersFixedDepth"
},
{
"name": "TestLogPollerManyFiltersFinalityTag"
}
]
}

0 comments on commit e400f89

Please sign in to comment.