Enhance trace reading by clamping register counts and cleaning up com… #261
This file contains hidden or 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: build CI | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install scons | |
| run: sudo apt install scons | |
| - name: default opt build | |
| run: ./build.py | |
| - name: default debug build | |
| run: ./build.py -d | |
| - name: opt build with dramsim | |
| run: ./build.py --dramsim | |
| - name: debug build with dramsim | |
| run: ./build.py -d --dramsim |