Skip to content

Commit 9c5d0a7

Browse files
committed
Grab newer toolchain to unbreak GitHub Actions
1 parent f862a20 commit 9c5d0a7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build_binaries.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ jobs:
1212
with:
1313
qmk_repo: qmk/qmk_firmware
1414
qmk_ref: master
15+
preparation_command: |
16+
set -e
17+
apt update && apt -y install curl
18+
19+
# Update avr-gcc toolchain to support -mrelax for smaller binaries.
20+
mkdir -p
21+
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
22+
printf "%s/.local/bin\n" "$HOME" >>"$GITHUB_PATH"
1523
1624
publish:
1725
name: 'QMK Userspace Publish'

0 commit comments

Comments
 (0)