Skip to content

Commit

Permalink
Add HOLLY build
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygreco committed Oct 2, 2023
1 parent db9ef97 commit f43d112
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/actions/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,19 @@ cd tidbit_extras || exit 1
append_githash_info
cd ../

# Add holly repo
git submodule add https://github.com/nullbitsco/holly holly

cd holly || exit 1
append_githash_info
cd ../

qmk setup -y

# Compile upstream boards first
for t in nibble tidbit scramble/v1 scramble/v2 snap;
for t in nibble tidbit scramble/v1 scramble/v2 snap holly;
do echo "Building QMK for $t";
qmk compile -j 2 -kb nullbitsco/$t -km all
qmk compile -j "$(nproc)" -kb nullbitsco/$t -km all
done

# Checkout nullbits rp2040 repo
Expand All @@ -53,7 +60,7 @@ make git-submodule
# Compile for RP2040
for t in nibble/rp2040 tidbit/rp2040 snap/rp2040;
do echo "Building QMK for $t";
qmk compile -j 2 -kb nullbitsco/$t -km all
qmk compile -j "$(nproc)" -kb nullbitsco/$t -km all
done

echo "commits=$GITHASH_STR" >> "$GITHUB_OUTPUT" || true
Expand Down

0 comments on commit f43d112

Please sign in to comment.