1
0
Fork 0
mirror of https://git.sr.ht/~kivikakk/niar synced 2024-12-23 04:02:25 +00:00
niar/template/.github/workflows/synthesis.yml
Asherah Connor 34b8c3b3f2 template: use "newproject" name in workflows, and -Onone with cxxrtl.
builtin-yosys doesn't support opt.
2024-06-27 19:53:37 +03:00

34 lines
589 B
YAML

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
- ulx3s
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: python -m newproject build -b ${{ matrix.board }}