From ac697716975c0131b7a00018f016b36a937d9879 Mon Sep 17 00:00:00 2001 From: Jay Greco Date: Sat, 2 Dec 2023 22:39:09 +0000 Subject: [PATCH] QMK Q4 2023 breaking changes updates --- .github/actions/entrypoint.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/actions/entrypoint.sh b/.github/actions/entrypoint.sh index 67d2193..b2dba19 100755 --- a/.github/actions/entrypoint.sh +++ b/.github/actions/entrypoint.sh @@ -39,10 +39,10 @@ cd ../ qmk setup -y # Compile upstream boards first -for t in nibble tidbit scramble/v1 scramble/v2 snap holly; - do echo "Building QMK for $t"; - qmk compile -j "$(nproc)" -kb nullbitsco/$t -km all -done +qmk mass-compile -j "$(nproc)" \ + nullbitsco/nibble:all nullbitsco/tidbit:all \ + nullbitsco/scramble/v1:all nullbitsco/scramble/v2:all \ + nullbitsco/snap:all nullbitsco/holly:all # Checkout nullbits rp2040 repo git config advice.detachedHead false @@ -58,10 +58,10 @@ cd ../../ make git-submodule # Compile for RP2040 -for t in nibble/rp2040 tidbit/rp2040 snap/rp2040; - do echo "Building QMK for $t"; - qmk compile -j "$(nproc)" -kb nullbitsco/$t -km all -done +qmk mass-compile -j "$(nproc)" \ + nullbitsco/nibble/rp2040:all \ + nullbitsco/tidbit/rp2040:all \ + nullbitsco/snap/rp2040:all echo "commits=$GITHASH_STR" >> "$GITHUB_OUTPUT" || true