From 1f6f7fbcd4ad9520d281f26abaa862da7eaf5bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20van=20Dorst?= Date: Sun, 15 Feb 2026 11:25:47 +0100 Subject: [PATCH] Fix GITHUB action build. 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. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa2f3f9..10e9636 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,4 +18,4 @@ jobs: apt update apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y - name: Make project - run: make \ No newline at end of file + run: make MACHINE="KP_9000_6XHML_X2" \ No newline at end of file