diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-07-18 17:45:04 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-07-18 17:45:25 +0900 |
| commit | 8bb5ea81e1e8fadc071fdf1c892f35de37a29f05 (patch) | |
| tree | d7e087f96067c84587eb79bb1464b8653f659988 /scripts | |
| parent | 91692846909ed191addb7ec1c34aad11392ab88b (diff) | |
| download | php-shirabe-8bb5ea81e1e8fadc071fdf1c892f35de37a29f05.tar.gz php-shirabe-8bb5ea81e1e8fadc071fdf1c892f35de37a29f05.tar.zst php-shirabe-8bb5ea81e1e8fadc071fdf1c892f35de37a29f05.zip | |
chore(bench): pass --no-audit to create-project benchmark
The earlier measurements documented in the perf notes were taken with
--no-audit to keep the security-advisories request out of the timings,
but the flag never landed in the committed script. Add it so future
runs are comparable.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/bench/create-project.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bench/create-project.sh b/scripts/bench/create-project.sh index 87852ef9..5277cd1f 100755 --- a/scripts/bench/create-project.sh +++ b/scripts/bench/create-project.sh @@ -33,8 +33,8 @@ hyperfine \ --export-json "$OUTDIR/results-$PACKAGE_SLUG.json" \ --export-markdown "$OUTDIR/results-$PACKAGE_SLUG.md" \ --ignore-failure \ - --command-name Shirabe "'$BIN' create-project --profile --no-plugins --no-scripts '$PACKAGE' '$TARGET_DIR-shirabe'" \ - --command-name Composer "composer create-project --profile --no-plugins --no-scripts '$PACKAGE' '$TARGET_DIR-composer'" + --command-name Shirabe "'$BIN' create-project --profile --no-plugins --no-scripts --no-audit '$PACKAGE' '$TARGET_DIR-shirabe'" \ + --command-name Composer "composer create-project --profile --no-plugins --no-scripts --no-audit '$PACKAGE' '$TARGET_DIR-composer'" echo ">> results: $OUTDIR/results-$PACKAGE_SLUG.json" >&2 echo ">> $OUTDIR/results-$PACKAGE_SLUG.md" >&2 |
