forked from qmk/qmk_userspace
-
Notifications
You must be signed in to change notification settings - Fork 24
94 lines (82 loc) · 2.76 KB
/
qmk_userspace_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Build Binaries
on:
workflow_call:
inputs:
qmk_repo:
description: "qmk_firmware repo to build against"
default: "qmk/qmk_firmware"
required: false
type: string
qmk_ref:
description: "qmk_firmware branch to build against"
default: "master"
required: false
type: string
preparation_command:
description: "command to execute before `qmk userspace-compile`"
default: ""
required: false
type: string
permissions:
contents: write
jobs:
build:
name: Build Userspace Firmware
runs-on: ubuntu-latest
container: qmkfm/base_container
steps:
- name: Checkout Userspace
uses: actions/checkout@v4
with:
token: ${{ github.token }}
submodules: recursive
- name: Check if qmk_firmware exists
id: check_files
uses: andstor/file-existence-action@v3
with:
files: qmk_firmware
- name: Checkout QMK Firmware
uses: actions/checkout@v4
if: steps.check_files.outputs.files_exists == 'false'
with:
token: ${{ github.token }}
path: qmk_firmware
repository: ${{ inputs.qmk_repo || 'qmk/qmk_firmware' }}
ref: ${{ inputs.qmk_ref || 'master' }}
submodules: recursive
- name: Install QMK CLI
run: |
python3 -m pip install --upgrade qmk
python3 -m pip install -r qmk_firmware/requirements.txt
# python3 -m pip install milc==1.8.0
- name: Configure QMK CLI
run: |
qmk config userspace_compile.parallel=$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || getconf _NPROCESSORS_ONLN 2>/dev/null)
qmk config user.qmk_home=$GITHUB_WORKSPACE/qmk_firmware
qmk config user.overlay_dir=$GITHUB_WORKSPACE
- name: Validate userspace
run: |
qmk userspace-doctor
- name: Preparation command
if: inputs.preparation_command != ''
run: |
${{ inputs.preparation_command }}
- name: Build
run: |
qmk userspace-compile -e DUMP_CI_METADATA=yes || touch .failed
# Generate the step summary markdown
./qmk_firmware/util/ci/generate_failure_markdown.sh > $GITHUB_STEP_SUMMARY || true
# Truncate to a maximum of 1MB to deal with GitHub workflow limit
truncate --size='<960K' $GITHUB_STEP_SUMMARY || true
# Exit with failure if the compilation stage failed
[ ! -f .failed ] || exit 1
- name: Upload binaries
uses: actions/upload-artifact@v4
if: always() && !cancelled()
continue-on-error: true
with:
name: Firmware
path: |
*.bin
*.hex
*.uf2