Skip to content

Commit 6f4b6f0

Browse files
authored
Remove obsolete workaround for ESP8266 in compilation test CI workflow (#38)
The ESP8266 platform has a tool dependency on python3, but assumes that tool is already installed in a particular location on Linux. At the time this workaround was added, the Docker container used by the arduino/actions/libraries/compile-examples action did not provide this tool, so a workaround was needed to install it in the container. Since that time, the action has developed a dependency on Python, making this workaround unnecessary. The switch from the action being a Bash script to a Python script caused the now-unnecessary workaround to break the workflow.
1 parent 4f855f2 commit 6f4b6f0

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

.github/workflows/compile-examples.yml

-7
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,7 @@ jobs:
2121
with:
2222
fetch-depth: 1
2323
- name: compile-examples for official Arduino boards
24-
if: startsWith(matrix.fqbn, '"esp8266:esp8266') != true
2524
uses: arduino/actions/libraries/compile-examples@master
2625
with:
2726
fqbn: ${{ matrix.fqbn }}
2827
libraries: ${{ env.LIBRARIES }}
29-
- name: compile-examples for ESP8266 boards
30-
if: startsWith(matrix.fqbn, '"esp8266:esp8266')
31-
uses: arduino/actions/libraries/compile-examples@master
32-
with:
33-
fqbn: ${{ matrix.fqbn }}
34-
entrypoint: /github/workspace/.github/workflows/install-python-wrapper.sh

.github/workflows/install-python-wrapper.sh

-9
This file was deleted.

0 commit comments

Comments
 (0)