Skip to content

Commit

Permalink
QMK Q4 2023 breaking changes updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygreco committed Dec 2, 2023
1 parent f43d112 commit ac69771
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit ac69771

Please sign in to comment.