-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub Actions: Integrate telemetry action
This action will gather statistics around eden test execution in GitHub Runners, helping us identify bottlenecks Signed-off-by: Pavel Abramov <[email protected]>
- Loading branch information
1 parent
e255da8
commit 5202263
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,9 @@ on: # yamllint disable-line rule:truthy | |
artifact_run_id: | ||
type: string | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
determine-runner: | ||
name: Determine best available runner | ||
|
@@ -53,6 +56,11 @@ jobs: | |
needs: determine-runner | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -74,6 +82,11 @@ jobs: | |
needs: [smoke, determine-runner] | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -99,6 +112,11 @@ jobs: | |
needs: [smoke, determine-runner] | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -120,6 +138,11 @@ jobs: | |
needs: [smoke, determine-runner] | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -145,6 +168,11 @@ jobs: | |
needs: [smoke, determine-runner] | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -166,6 +194,11 @@ jobs: | |
needs: [smoke, determine-runner] | ||
runs-on: ${{ needs.determine-runner.outputs.runner }} | ||
steps: | ||
- name: Collect Workflow Telemetry | ||
uses: catchpoint/workflow-telemetry-action@v2 | ||
with: | ||
comment_on_pr: true | ||
proc_trace_sys_enable: true | ||
- name: Get code | ||
uses: actions/[email protected] | ||
with: | ||
|