mirror of
https://github.com/anchore/syft
synced 2024-11-12 23:27:20 +00:00
1315cfd787
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
name: "Benchmark testing"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
Benchmark-Test:
|
|
name: "Benchmark tests"
|
|
runs-on: ubuntu-20.04
|
|
# note: we want benchmarks to run on pull_request events in order to publish results to a sticky comment, and
|
|
# we also want to run on push such that merges to main are recorded to the cache. For this reason we don't filter
|
|
# the job by event.
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Bootstrap environment
|
|
uses: ./.github/actions/bootstrap
|
|
|
|
- name: Restore base benchmark result
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: test/results/benchmark-main.txt
|
|
# use base sha for PR or new commit hash for main push in benchmark result key
|
|
key: ${{ runner.os }}-bench-${{ (github.event.pull_request.base.sha != github.event.after) && github.event.pull_request.base.sha || github.event.after }}
|
|
|
|
- name: Run benchmark tests
|
|
id: benchmark
|
|
run: |
|
|
REF_NAME=${GITHUB_REF##*/} make benchmark
|
|
OUTPUT=$(make show-benchstat)
|
|
OUTPUT="${OUTPUT//'%'/'%25'}" # URL encode all '%' characters
|
|
OUTPUT="${OUTPUT//$'\n'/'%0A'}" # URL encode all '\n' characters
|
|
OUTPUT="${OUTPUT//$'\r'/'%0D'}" # URL encode all '\r' characters
|
|
echo "result=$OUTPUT" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: benchmark-test-results
|
|
path: test/results/**/*
|
|
|
|
- name: Update PR benchmark results comment
|
|
uses: marocchino/sticky-pull-request-comment@v2
|
|
continue-on-error: true
|
|
with:
|
|
header: benchmark
|
|
message: |
|
|
### Benchmark Test Results
|
|
|
|
<details>
|
|
<summary>Benchmark results from the latest changes vs base branch</summary>
|
|
|
|
```
|
|
${{ steps.benchmark.outputs.result }}
|
|
```
|
|
|
|
</details>
|