slides: week 10 #317
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: Chisel Book Continuous Integration | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| - name: Setup sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: apt update | |
| run: sudo apt update | |
| - name: Setup Verilator | |
| run: sudo apt-get install verilator | |
| - name: Setup z3 | |
| run: sudo apt-get install z3 | |
| - name: Setup Latex | |
| run: sudo apt-get install texlive-full | |
| - name: Run tests and build the book | |
| run: make |