Skip to content

Bump tar from 6.2.0 to 6.2.1 #962

Bump tar from 6.2.0 to 6.2.1

Bump tar from 6.2.0 to 6.2.1 #962

Workflow file for this run

name: PerformanceCheck
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
EXPERIMENT_BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
CONTROL_BRANCH_NAME: 'main'
FIDELITY: 100
THROTTLE: 4
FORK_NAME: ${{ github.event.pull_request.head.repo.full_name }}
jobs:
master-krausest-comparison:
name: Glimmer Krausest Benchmark
runs-on: ubuntu-latest
timeout-minutes: 70
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wyvox/action-setup-pnpm@v3
with:
node-version: '20.1.0'
- name: RUN
run: pnpm run benchmark:setup
- name: Remove unused artifacts
run: rm -rf ./tracerbench-results/traces && rm -rf ./tracerbench-results/traces.zip
- name: Upload Tracerbench Artifacts
if: failure() || success()
uses: actions/upload-artifact@v3
with:
name: Trace Artifacts
path: tracerbench-results
- name: Write message
uses: mshick/add-pr-comment@v2
with:
message-path: "tracerbench-results/msg.txt"
update-only: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}