Skip to content

QSPI setup module

QSPI setup module #183

Workflow file for this run

name: build
# either manually started, or on a schedule
on: [ push, workflow_dispatch ]
jobs:
build:
# ubuntu
runs-on: ubuntu-latest
steps:
# need the repo checked out
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Checkout uf2-utils
uses: actions/checkout@v4
with:
repository: tinyvision-ai-inc/uf2-utils
path: uf2-utils
- name: Install uf2-utils
run: |
cd uf2-utils
make
make install
# install oss fpga tools
- name: install oss-cad-suite
uses: YosysHQ/setup-oss-cad-suite@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: |
yosys --version
nextpnr-ice40 --version
- name: build
run: |
cd pico_ice && make
- name: stats
run: |
cd pico_ice && make stats >> $GITHUB_STEP_SUMMARY