Skip to content

Commit 2f119e4

Browse files
marcgallegoclaude
andcommitted
fix(ci): set toolchain permissions recursively to include cc1
The build was failing because chmod only applied to bin/, but tc32-elf-gcc needs to exec cc1 which lives under lib/. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e832ddc commit 2f119e4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: Build Firmware
1+
name: Build firmware
22

33
on:
44
release:
5-
types: [created]
5+
types: [ created ]
66

77
jobs:
88
build:
@@ -11,15 +11,15 @@ jobs:
1111
matrix:
1212
include:
1313
- epd_model: 5
14-
name: BWR296_290R-N
14+
name: 290R-N
1515
- epd_model: 2
16-
name: BWR213_213R-N
16+
name: 213R-N
1717

1818
steps:
1919
- uses: actions/checkout@v4
2020

2121
- name: Set toolchain permissions
22-
run: chmod +x firmware/tc32_linux/bin/*
22+
run: chmod -R +x firmware/tc32_linux/
2323

2424
- name: Build firmware (EPD model ${{ matrix.epd_model }} - ${{ matrix.name }})
2525
run: |

0 commit comments

Comments
 (0)