-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Benchmarks Will Now Be Tested During CI (#44486)
* Adding flags for benchmarks in unit test CI * Upping timeout for unit tests to accomodate benchmarks * Fixing a typo * Run benchmarks once * Adding a makefile target for ci bench test * Removing a stray quotation * Compacting workflow * Benchmarks now with nicer output * Benchmarks back to their own step * With error messages * Adding pipefail to preserve exit code * Using bash * Simpler command and including e * Separating benchmarks into its own workflow * Fixing benchmarks workflow name * Ignoring benchmarks that require root * Updating to account for root and nonroot bench * Cleaning up the benchmark workflows * Bench requires test log dir to be created * Excluding all BenchmarkRoot benchmarks from running * Bumping benchGetNodes timeout duration to account for some jitter * Fixing multiplexer benchmark by mirroring unit tests * Remembered that skip exists * Skipping BenchmarkGetMaxNodes due to flake * Fixing formatting of summary * Actually fixing summary * Adding another newline * Simplifying setup for mux listener * Excluding BenchmarkRootExecCommand
- Loading branch information
1 parent
b1b26f5
commit c1c08a5
Showing
5 changed files
with
231 additions
and
83 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Benchmarks (Go) | ||
run-name: Benchmarks (Go) - ${{ github.run_id }} - @${{ github.actor }} | ||
|
||
on: | ||
pull_request: | ||
|
||
merge_group: | ||
|
||
jobs: | ||
changes: | ||
name: Check for relevant changes | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: read | ||
outputs: | ||
changed: ${{ steps.changes.outputs.changed }} | ||
steps: | ||
- name: Checkout | ||
if: ${{ github.event_name == 'merge_group' }} | ||
uses: actions/checkout@v4 | ||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: changes | ||
with: | ||
base: ${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref }} | ||
ref: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }} | ||
filters: | | ||
changed: | ||
- '.github/workflows/benchmark-code-nonroot.yaml' | ||
- '**.go' | ||
- 'go.mod' | ||
- 'go.sum' | ||
- 'build.assets/Makefile' | ||
- 'build.assets/Dockerfile*' | ||
- 'Makefile' | ||
test: | ||
name: Benchmarks (Go) | ||
needs: changes | ||
if: ${{ !startsWith(github.head_ref, 'dependabot/') && needs.changes.outputs.changed == 'true' }} | ||
runs-on: ubuntu-22.04-32core | ||
|
||
permissions: | ||
contents: read | ||
|
||
container: | ||
image: ghcr.io/gravitational/teleport-buildbox:teleport17 | ||
env: | ||
TELEPORT_XAUTH_TEST: yes | ||
WEBASSETS_SKIP_BUILD: 1 | ||
|
||
steps: | ||
- name: Checkout Teleport | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare workspace | ||
id: prepare | ||
uses: ./.github/actions/prepare-workspace | ||
|
||
# Run benchmarks once to make sure they don't break | ||
# Must be run separate since gotestsum is not compatible with benchmark output | ||
- name: Run Benchmarks Once | ||
timeout-minutes: 5 | ||
shell: bash # Overriding default shell which is `sh -e` | ||
run: make test-go-bench | sed -u -E "s/^(FAIL\s+github)/::error title=Benchmark Failed::\1/" | ||
|
||
- name: Construct Summary | ||
shell: bash | ||
run: | | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
go run golang.org/x/perf/cmd/benchstat@latest test-logs/bench.txt \ | ||
| sed -E -e 's/^pkg:\s+(github.*)/\n```\n## \1\n\n```/' >> "$GITHUB_STEP_SUMMARY" |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Benchmarks (Root) (Go) | ||
run-name: Benchmarks (Root) (Go) - ${{ github.run_id }} - @${{ github.actor }} | ||
|
||
on: | ||
pull_request: | ||
|
||
merge_group: | ||
|
||
jobs: | ||
changes: | ||
name: Check for relevant changes | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: read | ||
outputs: | ||
changed: ${{ steps.changes.outputs.changed }} | ||
steps: | ||
- name: Checkout | ||
if: ${{ github.event_name == 'merge_group' }} | ||
uses: actions/checkout@v4 | ||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: changes | ||
with: | ||
base: ${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref }} | ||
ref: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }} | ||
filters: | | ||
changed: | ||
- '.github/workflows/benchmark-code-root.yaml' | ||
- '**.go' | ||
- 'go.mod' | ||
- 'go.sum' | ||
- 'build.assets/Makefile' | ||
- 'build.assets/Dockerfile*' | ||
- 'Makefile' | ||
test: | ||
name: Benchmarks (Root) | ||
needs: changes | ||
if: ${{ !startsWith(github.head_ref, 'dependabot/') && needs.changes.outputs.changed == 'true' }} | ||
runs-on: ubuntu-22.04-32core | ||
|
||
permissions: | ||
contents: read | ||
|
||
container: | ||
image: ghcr.io/gravitational/teleport-buildbox:teleport17 | ||
options: --cap-add=SYS_ADMIN --privileged | ||
env: | ||
WEBASSETS_SKIP_BUILD: 1 | ||
TELEPORT_XAUTH_TEST: yes | ||
|
||
steps: | ||
- name: Checkout Teleport | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare workspace | ||
uses: ./.github/actions/prepare-workspace | ||
|
||
# Run benchmarks once to make sure they don't break | ||
# Must be run separate since gotestsum is not compatible with benchmark output | ||
- name: Run Benchmarks Once | ||
timeout-minutes: 5 | ||
shell: bash # Overriding default shell which is `sh -e` | ||
run: make test-go-bench-root | sed -u -E "s/^(FAIL\s+github)/::error title=Benchmark Failed::\1/" | ||
|
||
- name: Construct Summary | ||
shell: bash | ||
run: | | ||
echo '```' >> $GITHUB_STEP_SUMMARY | ||
go run golang.org/x/perf/cmd/benchstat@latest test-logs/bench.txt \ | ||
| sed -E -e 's/^pkg:\s+(github.*)/\n```\n## \1\n\n```/' >> "$GITHUB_STEP_SUMMARY" |
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
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
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