Entity instrumentation #32
Workflow file for this run
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
name: 📋 Performance Test | |
on: | |
pull_request: | |
types: [ synchronize, opened, reopened, ready_for_review ] | |
concurrency: | |
group: preview-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
K6_SCRIPTS_DIR: ./performance-testing/scripts | |
K6_SCENARIO: ./performance-testing/scenarios/basic.js | |
K6_RESULTS_DIR: ./performance-testing/results | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Git clone the repository | |
uses: actions/checkout@v3 | |
- name: 📁 Init | |
run: | | |
# Set permissions for checkout. | |
sudo chown -R 1000:1000 $(pwd) | |
# Create performance testing results directory. | |
sudo mkdir -p ${K6_RESULTS_DIR} | |
sudo chmod 777 ${K6_RESULTS_DIR} | |
- name: 📦 Setup | |
run: | | |
OTEL_PHP_AUTOLOAD_ENABLED=false docker compose up -d --wait | |
docker compose exec php-cli composer install --prefer-dist | |
docker compose exec php-cli drush si demo_umami -y | |
- name: 🧪 K6 - Execute Baseline Performance Test | |
run: | | |
bash ${K6_SCRIPTS_DIR}/k6_run.sh ${K6_SCENARIO} ${K6_RESULTS_DIR} baseline.json | |
- name: ⚙️ Enable OpenTelemetry Auto Instrumentation | |
run: | | |
docker compose stop | |
docker compose up -d --wait | |
- name: 🧪 K6 - Execute OpenTelemetry Enabled Performance Test | |
run: | | |
bash ${K6_SCRIPTS_DIR}/k6_run.sh ${K6_SCENARIO} ${K6_RESULTS_DIR} otel.json | |
- name: 📋 Review Test Results | |
run: | | |
BUDGET=200 | |
bash ${K6_SCRIPTS_DIR}/review_results.sh ${K6_RESULTS_DIR}/baseline.json ${K6_RESULTS_DIR}/otel.json ${BUDGET} ${K6_RESULTS_DIR}/comment.txt | |
- name: 📦 Collect Test Result Comment Details | |
id: comment | |
if: always() | |
run: | | |
results=$(cat ${K6_RESULTS_DIR}/comment.txt) | |
echo "results=$results" >> "$GITHUB_OUTPUT" | |
- name: 📋 Post Test Results to Comment | |
uses: peter-evans/create-or-update-comment@v4 | |
if: always() | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Performance Data | |
---------------- | |
${{ steps.comment.outputs.results }} |