Skip to content

Commit

Permalink
Do some more workflow stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
justcallmekoko committed Jun 26, 2024
1 parent e09d443 commit 862a0ba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
sketch-names: TestFile.ino
arduino-board-fqbn: esp32:esp32:esp32s2
platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.10/package_esp32_dev_index.json

- name: Show Arduino dir structure
run: |
find /home/runner/
- name: Pull arduino-esp32 v2.0.4
uses: actions/checkout@v2
Expand Down Expand Up @@ -162,8 +166,7 @@ jobs:

- name: Modify platform.txt
run: |
echo "Chicken"
for i in $(find /home/runner/ -name "platform.txt"); do
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"
Expand Down

0 comments on commit 862a0ba

Please sign in to comment.