Use Latex in the CI #233
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: Chisel Book Continous Integration | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- 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 |