mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-01-09 23:22:30 +00:00
* voyager: fix compilation errors * workflow: fix firmware building to work correctly * Calculate and print stack size on AVR builds * workflow: add oryx keymaps * Fix issues due to tests Proof that they're working!
35 lines
647 B
YAML
35 lines
647 B
YAML
name: Build firmware
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build-firmware:
|
|
runs-on: ubuntu-latest
|
|
container: qmkfm/qmk_cli
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
keymap:
|
|
- default
|
|
- oryx
|
|
|
|
steps:
|
|
- name: Checkout QMK Firmware
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
persist-credentials: false
|
|
submodules: true
|
|
|
|
- name: Build
|
|
id: build
|
|
run: |
|
|
qmk mass-compile -f manufacturer="ZSA Technology Labs" -km ${{ matrix.keymap }} -e SKIP_GIT=1
|