feat: dual-mode menu core with switchable native FB reader #16
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 Build | |
| on: | |
| pull_request: | |
| push: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build with Quartus Lite | |
| run: | | |
| set -euo pipefail | |
| docker run --rm \ | |
| -v "${{ github.workspace }}:/project" \ | |
| -w /project \ | |
| theypsilon/quartus-lite-c5:17.0.2.docker0 \ | |
| /opt/intelFPGA_lite/quartus/bin/quartus_sh --flow compile menu | |
| - name: Check build output | |
| run: test -f output_files/menu.rbf | |
| - name: Upload RBF | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: menu-rbf | |
| path: output_files/menu.rbf | |
| if-no-files-found: error |