Skip to content

Perf charts

Perf charts #1273

Workflow file for this run

name: Perf charts
# Run on request and every day at 0500 PDT
on:
workflow_dispatch:
schedule:
- cron: 0 13 * * *
jobs:
firtool-perf:
name: firtool performance
runs-on: ubuntu-latest
container:
image: ghcr.io/circt/images/circt:nightly
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install NPM Dependencies
run: npm i
- name: which firtool
run: which firtool
- name: firtool --version
run: firtool --version
- name: CPU type
run: lscpu
- name: run firtool
run: ./bin/run-firtool.js
- name: Install rsync 📚
run: apt-get update && apt-get install -y rsync
- name: publish pages 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.0
with:
folder: docs
clean: false