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 69d2f45
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ jobs:
with:
qmk_repo: qmk/qmk_firmware
qmk_ref: master
preparation_command: |
# Update avr-gcc toolchain to support -mrelax for smaller binaries.
set -e
apt update && apt -y install curl
mkdir -p ~/.local
curl -Lf 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 69d2f45

Please sign in to comment.