getting github actions to work

This commit is contained in:
2023-11-09 07:09:39 -06:00
parent 9307005a17
commit c4de2365b9

View File

@@ -27,11 +27,16 @@ jobs:
- name: Build - name: Build
run: | run: |
cd ~/qmk_firmware/ cd ~/qmk_firmware/
for t in draculad keebio/iris/rev8 handwired/scottokeebs/scottogame ferris/sweep bluebell/swoop; Building QMK for draculad
do echo "Building QMK for $t"; qmk compile -kb draculad -km dgvigil -e CONVERT_TO=promicro_rp2040
echo "qmk compile -kb $t -km dgvigil" Building QMK for keebio/iris/rev8
qmk compile -kb $t -km dgvigil qmk compile -kb keebio/iris/rev8 -km dgvigil -e CONVERT_TO=promicro_rp2040
done Building QMK for handwired/scottokeebs/scottogame
qmk compile -kb handwired/scottokeebs/scottogame -km dgvigil
Building QMK for ferris/sweep
qmk compile -kb ferris/sweep -km dgvigil
Building QMK for bluebell/swoop
qmk compile -kb bluebell/swoop -km dgvigil -e CONVERT_TO=promicro_rp2040
find -maxdepth 1 -name "*.hex" find -maxdepth 1 -name "*.hex"
find -maxdepth 1 -name "*.uf2" find -maxdepth 1 -name "*.uf2"
mkdir -p ~/compiled/firmware mkdir -p ~/compiled/firmware