feat: track metrics #15
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: Transform CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
pull_request: | |
types: [opened, synchronize] | |
paths-ignore: | |
- '**/*.md' | |
push: | |
branches: | |
- main | |
- stats | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
build: | |
name: Build | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: taiki-e/checkout-action@v1 | |
- name: Checkout oxc | |
uses: actions/checkout@v4 | |
with: | |
repository: oxc-project/oxc | |
ref: main | |
path: oxc | |
- run: mv oxc ../oxc | |
- name: Install Rust | |
uses: Boshen/setup-rust@main | |
with: | |
save-cache: true # ${{ github.ref_name == 'main' }} | |
- name: Build | |
run: cargo build --release | |
- name: Upload Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
if-no-files-found: error | |
name: transform-ci | |
path: ./target/release/transform-ci | |
# checkout: | |
# name: Read repos.json | |
# needs: build | |
# runs-on: ubuntu-latest | |
# outputs: | |
# matrix: ${{ steps.setmatrix.outputs.content }} | |
# steps: | |
# - uses: taiki-e/checkout-action@v1 | |
# - id: setmatrix | |
# uses: jaywcjlove/github-action-read-file@main | |
# with: | |
# localfile: ./matrix.json | |
# test: | |
# needs: checkout | |
# timeout-minutes: 30 | |
# runs-on: ubuntu-latest | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# include: ${{ fromJson(needs.checkout.outputs.matrix) }} | |
# name: ${{ matrix.repository }} | |
# steps: | |
# - name: Clone ${{ matrix.repository }} | |
# uses: actions/checkout@v4 | |
# with: | |
# repository: ${{ matrix.repository }} | |
# ref: ${{ matrix.ref }} | |
# - name: Download Transform Binary | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: transform-ci | |
# - name: chmod +x transform-ci | |
# run: chmod +x ./transform-ci | |
# - name: Transform | |
# run: ./transform-ci ${{ matrix.transform_directories }} | |
# - name: Install pnpm | |
# run: corepack enable | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v4 | |
# with: | |
# cache: pnpm | |
# - name: Install packages | |
# run: pnpm install | |
# - name: Check | |
# run: ${{ matrix.command }} | |
monitor: | |
name: Monitor Metrics | |
needs: build | |
# if: ${{ github.ref_name == 'main' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiki-e/checkout-action@v1 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: transform-ci | |
- run: | | |
BINARY_SIZE=$(ls -l ./transform-ci | awk '{print $5}') | |
jq ".[0].value = ${BINARY_SIZE}" template.json > data.json | |
- uses: benchmark-action/github-action-benchmark@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
name: Metrics | |
tool: customSmallerIsBetter | |
output-file-path: data.json | |
gh-pages-branch: gh-pages | |
benchmark-data-dir-path: dev/bench | |
auto-push: true | |
save-data-file: true |