Merge branch 'main' into FPGA #14
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: CI for booth_algorithm unit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| vhdl-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install GHDL | |
| run: sudo apt update && sudo apt install -y ghdl | |
| - name: Run Simulation for booth_algorithm | |
| run: make clean && make all | |
| - name: Run Simulation for reg_booth_algorithm | |
| run: make clean && make TOP_LEVEL=tb_reg_booth_algorithm | |
| - name: Run Simulation for apb4_booth_algorithm | |
| run: make clean && make TOP_LEVEL=tb_apb4_booth_algorithm | |