blob: 652ff2994c07fb7f9110389177753ee503589b5d (
plain)
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
|
import subprocess
import os
import sys
import re
KEYBOARDS = []
# Search the repository for Sonix SN32F2 keyboard directories
command = "grep -rl 'MCU = SN32F2' | sed -e 's/keyboards\///g' -e 's/\/rules.mk//g'| sort"
ret = subprocess.run(command, capture_output=True, shell=True)
BOARDS = ret.stdout.decode().split('\n')
def main():
for line in BOARDS:
# We need to manipulate some non-standard directories
if line.strip() != "" and line.strip() != "lib/python/build_all.py":
if re.match("^(gmmk)",line.strip()):
KEYBOARDS.append(line.strip()+"/rev2")
KEYBOARDS.append(line.strip()+"/rev3")
if re.match("^(keychron/k)",line.strip()):
KEYBOARDS.append(line.strip())
# keychron K series white don't have yet via/optical support
if re.match("(?!.*white)",line.strip()):
KEYBOARDS.append(line.strip()+"/via")
KEYBOARDS.append(line.strip()+"/optical")
KEYBOARDS.append(line.strip()+"/optical_via")
else: KEYBOARDS.append(line.strip())
if __name__ == '__main__':
main()
error = False
for kb in KEYBOARDS:
# We are building for different chips, and some things need a clean pass, so make sure it's clean
build_command = f"qmk clean && qmk compile -kb {kb} -km all -j{os.cpu_count()}"
if subprocess.run(build_command, shell=True).returncode != 0:
error = True
if error:
sys.exit(1)
|