move OP_IMM to its own stage, reducing build time and logic size. #15
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: Synthesis | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
synthesis: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
board: | |
- icebreaker | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: kivikakk/niar/setup-action@main | |
with: | |
install-oss-cad-suite: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Elaborate and synthesise | |
run: .venv/bin/python -m sae build -b ${{ matrix.board }} |