Skip to content

Commit 7298064

Browse files
committed
gh-actions: Don't build teensy 4
Patching fails: 2 out of 2 hunks FAILED -- saving rejects to file packages/framework-arduinoteensy/cores/teensy4/yield.cpp.rej Firmware never worked, only Teensy 3. Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 63bcbb1 commit 7298064

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
patch -d ~/.platformio/ -p0 < diff/teensy3/yield.cpp.diff
4747
4848
# Teensy4.1
49-
patch -d ~/.platformio/ -p0 < diff/teensy4/usb_desc.c.diff
50-
patch -d ~/.platformio/ -p0 < diff/teensy4/usb_desc.h.diff
51-
patch -d ~/.platformio/ -p0 < diff/teensy4/usb_inst.cpp.diff
52-
patch -d ~/.platformio/ -p0 < diff/teensy4/yield.cpp.diff
49+
# patch -d ~/.platformio/ -p0 < diff/teensy4/usb_desc.c.diff
50+
# patch -d ~/.platformio/ -p0 < diff/teensy4/usb_desc.h.diff
51+
# patch -d ~/.platformio/ -p0 < diff/teensy4/usb_inst.cpp.diff
52+
# patch -d ~/.platformio/ -p0 < diff/teensy4/yield.cpp.diff
5353
5454
- name: Build for Teensy 3.1
5555
run: |
@@ -59,16 +59,16 @@ jobs:
5959
run: |
6060
pio run -e teensy36
6161
62-
- name: Build for Teensy 4.1
63-
run: |
64-
pio run -e teensy41
62+
# - name: Build for Teensy 4.1
63+
# run: |
64+
# pio run -e teensy41
6565

6666
- name: Prepare firmware folder
6767
run: |
6868
mkdir build
6969
cp .pio/build/teensy31/firmware.hex build/teensy31_firmware.hex
7070
cp .pio/build/teensy36/firmware.hex build/teensy36_firmware.hex
71-
cp .pio/build/teensy41/firmware.hex build/teensy41_firmware.hex
71+
# cp .pio/build/teensy41/firmware.hex build/teensy41_firmware.hex
7272
7373
- name: Upload Teensy Firmware
7474
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)