Skip to content

Commit

Permalink
Grab newer toolchain to unbreak GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bcat committed Nov 3, 2024
1 parent f862a20 commit 9c5d0a7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build_binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ jobs:
with:
qmk_repo: qmk/qmk_firmware
qmk_ref: master
preparation_command: |
set -e
apt update && apt -y install curl
# Update avr-gcc toolchain to support -mrelax for smaller binaries.
mkdir -p
curl -fL https://github.com/qmk/qmk_toolchains/releases/download/v14.2.0-2/qmk_toolchains-gcc14.2.0-host_linuxX64.tar.xz | tar -Jxf - -C ~/.local --strip-components=1
printf "%s/.local/bin\n" "$HOME" >>"$GITHUB_PATH"
publish:
name: 'QMK Userspace Publish'
Expand Down

0 comments on commit 9c5d0a7

Please sign in to comment.