Skip to content

feat: dual-mode menu core with switchable native FB reader #16

feat: dual-mode menu core with switchable native FB reader

feat: dual-mode menu core with switchable native FB reader #16

Workflow file for this run

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