chore: add benchmarks test #100
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: unit-test | |
on: | |
push: | |
branches: [main] | |
jobs: | |
difftest-isa-test: | |
name: Difftest ISA Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
cd rtl/TreeCoreL2 | |
chmod +x scripts/install.sh | |
make install | |
chmod +x scripts/setup.sh | |
make setup | |
make nemuBuild | |
make dramsim3Build | |
make riscvTestBuild | |
make cpuTestBuild | |
make CHIP_TARGET=tc_l2 RUN_PLATFORM=action unit-test |