Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Average and best of 10 values #20

Merged
merged 4 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 69 additions & 14 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,32 @@ name: Performance

on:
workflow_dispatch:
pull_request: # FIXME JUST FOR TESTING
branches:
- main
schedule:
- cron: "0 5 * * *" # Runs every day at 5am: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule

jobs:
build:
prepare:
name: Performance benchmark on ubuntu-latest with Node.js 16.x

runs-on: ubuntu-latest
timeout-minutes: 60

timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js "16.x"
uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"

- name: Use Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Build
shell: bash
run: yarn

- name: Checkout Theia
uses: actions/checkout@v3
with:
Expand All @@ -57,29 +54,87 @@ jobs:
env:
NODE_OPTIONS: --max_old_space_size=4096
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
- name: Run Theia
- name: Cache Build Result
uses: actions/cache@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}

run-test:
name: Performance benchmark on ubuntu-latest with Node.js 16.x
runs-on: ubuntu-latest
needs: [prepare]
strategy:
matrix:
run: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
timeout-minutes: 40
steps:
- name: Restore Build Result (#${{ matrix.run }})
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Use Node.js "16.x"
uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- name: Use Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Get History
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
- name: Run Theia (#${{ matrix.run }})
shell: bash
working-directory: ./theia
run: yarn browser start:debug &

- name: Run Performance Measurement
- name: Run Performance Measurement (#${{ matrix.run }})
uses: GabrielBB/xvfb-action@v1
env:
RUN_NO: ${{ matrix.run }}
with:
run: yarn performance
- name: Upload performance measurement (#${{ matrix.run }})
uses: actions/upload-artifact@v3
with:
name: performance-measurement-${{ github.run_number }}
path: performance-metrics/*

generate-report:
name: Performance benchmark on ubuntu-latest with Node.js 16.x
runs-on: ubuntu-latest
needs: [run-test]
steps:
- name: Restore Build Result
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Get History
uses: actions/checkout@v2
uses: actions/checkout@v4
if: always() && github.ref == 'refs/heads/main'
continue-on-error: true
with:
ref: gh-pages
path: gh-pages

- name: Download Performance Measurements
uses: actions/download-artifact@v3
with:
name: performance-measurement-${{ github.run_number }}
path: performance-metrics
- name: Prepare Report
if: always() && github.ref == 'refs/heads/main'
shell: bash
run: yarn performance-report

- name: Publish Report
if: always() && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v2
Expand Down
3 changes: 2 additions & 1 deletion scripts/fetch-metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export async function fetchPerformanceMetrics({
const dateString = `${now.getFullYear()}-${now.getMonth() + 1}-${now.getDate()}`;
const timeString = `${now.getHours()}-${now.getMinutes()}-${now.getSeconds()}`;
const timestamp = `${dateString}T${timeString}`;
const fileName = outputFileNamePrefix + timestamp + outputFileNamePostfix;
const runNo = process.env.RUN_NO ? `_${process.env.RUN_NO}` : '';
const fileName = outputFileNamePrefix + timestamp + runNo + outputFileNamePostfix;
const targetFile = `${outputFilePath}/${fileName}`;

fs.ensureDirSync(outputFilePath);
Expand Down
Loading
Loading