mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
PR #119 made that no machine-type is selected, so the build will fail.
commit 2f787fee enables us select a machine via a variable, use this to
select a machine-type `KP_9000_6XHML_X2` to build.
21 lines
404 B
YAML
21 lines
404 B
YAML
name: Build firmware
|
|
|
|
on:
|
|
push:
|
|
branches: ['**']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: debian:trixie
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt update
|
|
apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y
|
|
- name: Make project
|
|
run: make MACHINE="KP_9000_6XHML_X2" |