Skip to content

Commit 76959e6

Browse files
committed
fix: include BfButton library locally to fix firmware CI/CD
- Added ButtonFever (BfButton) library to server/firmware/libraries/ - Updated firmware workflow to use local library instead of broken external repo - Fixes CI/CD failure caused by unavailable m-reilly/BfButton repository
1 parent 2e043ca commit 76959e6

12 files changed

Lines changed: 1104 additions & 6 deletions

File tree

.github/workflows/firmware.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,7 @@ jobs:
3636
- name: Install Extra Libraries (Using Checkout for reliability)
3737
run: mkdir -p $HOME/Arduino/libraries
3838

39-
- name: Checkout BfButton
40-
uses: actions/checkout@v4
41-
with:
42-
repository: m-reilly/BfButton
43-
path: BfButton
39+
# BfButton is now included locally in server/firmware/libraries/
4440

4541
- name: Checkout ESPAsyncTCP
4642
uses: actions/checkout@v4
@@ -56,7 +52,7 @@ jobs:
5652

5753
- name: Setup Libraries
5854
run: |
59-
mv BfButton $HOME/Arduino/libraries/
55+
cp -r server/firmware/libraries/BfButton $HOME/Arduino/libraries/
6056
mv ESPAsyncTCP $HOME/Arduino/libraries/
6157
mv ESPAsyncWebServer $HOME/Arduino/libraries/
6258
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Mickey Chan
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)