qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit 890909c2d7a8c9efd1887044c6f6d40719403394
parent f15fff3258edb3c25405c90e06e4994c90efaa79
Author: Nick Brassel <nick@tzarc.org>
Date:   Fri, 12 Jul 2024 09:19:04 +1000

[CI] Remove `via` keymap builds. (#24103)


Diffstat:
M.github/workflows/ci_build_major_branch.yml | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci_build_major_branch.yml b/.github/workflows/ci_build_major_branch.yml @@ -52,9 +52,9 @@ jobs: run: | target_count=$( { qmk find -km default 2>/dev/null - qmk find -km via 2>/dev/null + # qmk find -km xap 2>/dev/null } | sort | uniq | wc -l) - slice_length=$((target_count / ($CONCURRENT_JOBS - 1))) # Err on the side of caution as we're splitting default and via + slice_length=$((target_count / ($CONCURRENT_JOBS - 1))) # Err on the side of caution echo "slice_length=$slice_length" >> $GITHUB_OUTPUT build_targets: @@ -63,7 +63,8 @@ jobs: strategy: fail-fast: false matrix: - keymap: [default, via] + keymap: [default] + # keymap: [default, xap] uses: ./.github/workflows/ci_build_major_branch_keymap.yml with: branch: ${{ inputs.branch || github.ref_name }}