process perf results #65
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: process_perf | |
on: | |
workflow_dispatch: null | |
push: | |
branches: | |
- test-perf | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: meta-introspector/checkout@v4 | |
#with: | |
# submodules: recursive | |
- name: Login to GHCR | |
uses: meta-introspector/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: pull the image | |
run: docker pull ghcr.io/meta-introspector/o1js/o1js-perf-recording:latest | |
- name: Download a Build Artifact | |
uses: meta-introspector/action-download-artifact@v6 | |
with: | |
workflow_search: true | |
commit: 584fd53a9f50126360ab764537f4ae10bd5e3666 | |
skip_unpack: true | |
path: data | |
- name: run the report | |
run: docker compose up --build reporting-github | |
env: | |
WORKSPACE_DIR2: $GITHUB_WORKSPACE | |
WORKSPACE_DIR: $GITHUB_WORKSPACE | |
- name: run the report | |
run: docker compose up --build reporting-github | |
env: | |
WORKSPACE_DIR2: $GITHUB_WORKSPACE | |
WORKSPACE_DIR: $GITHUB_WORKSPACE |