Skip to content

Added output of benchmark tests into github step summary #35

Added output of benchmark tests into github step summary

Added output of benchmark tests into github step summary #35

Workflow file for this run

name: Benchmark Suite
on:
pull_request:
paths:
- '.github/workflows/**'
- 'src/adapter/**'
- 'src/core/**'
- 'src/lib/**'
- 'tools/**'
- 'composer.lock'
jobs:
benchmark:
name: "Benchmark"
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
dependencies:
- "locked"
php-version:
- "8.1"
operating-system:
- "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: none
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
- name: "Get Composer Cache Directory"
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Cache Composer dependencies"
uses: "actions/cache@v3"
with:
path: "${{ steps.composer-cache.outputs.dir }}"
key: "php-${{ matrix.php-version }}-locked-composer-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
php-${{ matrix.php-version }}-locked-composer-
- name: "Install locked dependencies"
run: "composer install --no-interaction --no-progress"
- name: "Cache PHPBench reports"
uses: "actions/cache@v3"
with:
path: "var/phpbench"
key: "php-${{ matrix.php-version }}-1.x-phpbench"
restore-keys: |
php-${{ matrix.php-version }}-1.x-phpbench-
- name: Adding main headline
run: echo '# Flow PHP - Benchmark' >> $GITHUB_STEP_SUMMARY
- name: Adding extractors headline
run: |
echo '## Extractors' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark"
run: "composer test:benchmark -- --ref=1.x --progress=none --group=extractor >> $GITHUB_STEP_SUMMARY"
- name: Adding transformers headline
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
echo '## Transformers' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark"
run: "composer test:benchmark -- --ref=1.x --progress=none --group=transformer >> $GITHUB_STEP_SUMMARY"
- name: Adding entry factory headline
run: |
echo '```' >> $GITHUB_STEP_SUMMARY
echo '## Entry Factory' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: "Benchmark"
run: "composer test:benchmark -- --ref=1.x --progress=none --group=entry_factory >> $GITHUB_STEP_SUMMARY"
- name: Adding footer
run: echo '```' >> $GITHUB_STEP_SUMMARY