Skip to content

Commit

Permalink
Revert everything
Browse files Browse the repository at this point in the history
Yea don't expect another release. I'm getting tired of this bullshit
  • Loading branch information
justcallmekoko committed Jun 26, 2024
1 parent 99810dd commit 585b7af
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions .github/workflows/build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
ref: v2.0.6
path: CustomMicroNMEA

#- name: Install ESPAsyncWebServer
# uses: actions/checkout@v2
# with:
# repository: bigbrodude6119/ESPAsyncWebServer
# ref: master
# path: CustomESPAsyncWebServer
- name: Install ESPAsyncWebServer
uses: actions/checkout@v2
with:
repository: bigbrodude6119/ESPAsyncWebServer
ref: master
path: CustomESPAsyncWebServer

- name: Install TFT_eSPI
uses: actions/checkout@v2
Expand All @@ -86,7 +86,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: h2zero/NimBLE-Arduino
ref: master
ref: 1.2.0
path: CustomNimBLE-Arduino

- name: Install Adafruit_NeoPixel
Expand All @@ -102,6 +102,13 @@ jobs:
repository: bblanchon/ArduinoJson
ref: v6.18.2
path: CustomArduinoJson

#- name: Install SwitchLib
# uses: actions/checkout@v2
# with:
# repository: justcallmekoko/SwitchLib
# ref: main
# path: CustomSwitchLib

- name: Install LinkedList
uses: actions/checkout@v2
Expand Down Expand Up @@ -159,9 +166,15 @@ jobs:

- name: Modify platform.txt
run: |
for i in $(find /home/runner/.arduino15/packages/esp32/ -name "ld_libs"); do
sed -i 's/-lxtensa /-lxtensa -zmuldefs /' "$i"
cat "$i"
for i in $(find /home/runner/.arduino15/packages/esp32/hardware/esp32/ -name "platform.txt"); do
sed -i 's/compiler.c.elf.libs.esp32c3=/compiler.c.elf.libs.esp32c3=-zmuldefs /' "$i"
sed -i 's/compiler.c.elf.libs.esp32s3=/compiler.c.elf.libs.esp32s3=-zmuldefs /' "$i"
sed -i 's/compiler.c.elf.libs.esp32s2=/compiler.c.elf.libs.esp32s2=-zmuldefs /' "$i"
sed -i 's/compiler.c.elf.libs.esp32=/compiler.c.elf.libs.esp32=-zmuldefs /' "$i"
cat "$i" | grep compiler.c.elf.libs.esp32c3
cat "$i" | grep compiler.c.elf.libs.esp32s3
cat "$i" | grep compiler.c.elf.libs.esp32s2
cat "$i" | grep compiler.c.elf.libs.esp32
done
- name: Configure configs.h for Flipper Zero WiFi Dev Board
Expand Down

0 comments on commit 585b7af

Please sign in to comment.