QSPI setup module #183
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: 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 |