Reworked build system

This commit is contained in:
2022-11-18 23:33:15 -08:00
parent 6e84592338
commit 7082172bc4
8 changed files with 16 additions and 118 deletions

13
build.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Uses the qmk container found here:
# https://git.betalupi.com/Mark/docker
#
# Be careful, it may not be using the latest QMK.
docker run -it \
--user $(id -u):$(id -g) \
-v "$(pwd)/output:/build_output" \
-v "$(pwd)/keyboards:/qmk_firmware/keyboards:ro" \
-e QMK_TARGET="betalupi_ergodox:default" \
git.betalupi.com/mark/qmk