on push only #12
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 NPM | |
on: [push] | |
jobs: | |
firtool-perf: | |
name: firtool performance | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install verilator | |
run: sudo apt-get install verilator | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install NPM Dependencies | |
run: npm i | |
- name: PATH fix | |
run: echo "./node_modules/.bin" >> $GITHUB_PATH | |
- 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 |