Perf charts #1459
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: 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 |