Skip to content

PHPLIB-1260: Revamp evergreen config #207

PHPLIB-1260: Revamp evergreen config

PHPLIB-1260: Revamp evergreen config #207

Workflow file for this run

name: "Performance Benchmark"
on:
pull_request:
branches:
- "v*.*"
- "master"
- "feature/*"
paths-ignore:
- "docs/**"
push:
branches:
- "v*.*"
- "master"
- "feature/*"
paths-ignore:
- "docs/**"
env:
PHP_VERSION: "8.2"
DRIVER_VERSION: "mongodb/mongo-php-driver@master"
jobs:
psalm:
name: "phpbench"
runs-on: "ubuntu-22.04"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- id: setup-mongodb
uses: mongodb-labs/drivers-evergreen-tools@master
with:
version: "6.0"
topology: "server"
skip-legacy-shell: true
- name: Setup cache environment
id: extcache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ env.PHP_VERSION }}
extensions: "mongodb-${{ ENV.DRIVER_VERSION }}"
key: "extcache-v1"
- name: Cache extensions
uses: actions/cache@v3
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "mongodb-${{ ENV.DRIVER_VERSION }}"
php-version: "${{ env.PHP_VERSION }}"
- name: "Show driver information"
run: "php --ri mongodb"
- name: "Install dependencies with Composer"
uses: "ramsey/[email protected]"
with:
composer-options: "--no-suggest --working-dir=./benchmark"
- name: "Run phpbench"
working-directory: "./benchmark"
run: "vendor/bin/phpbench run --report=aggregate --report=bar_chart_time --report=env --output html"
- name: Upload HTML report
uses: actions/upload-artifact@v3
with:
name: phpbench-${{ github.sha }}.html
path: ./benchmark/.phpbench/html/index.html
retention-days: 3