adafruit / ci-arduino

A script that will install all of the common dependencies for testing Arduino library builds using Github Actions
MIT License
115 stars 73 forks source link

Testing examples of my library for ESP8266 fails. #84

Closed beegee-tokyo closed 4 years ago

beegee-tokyo commented 4 years ago

Since some time testing for ESP8266 fails for me with the following debug output:

----------------------------- DEBUG OUTPUT -----------------------------

Picked up JAVA_TOOL_OPTIONS: 

Set log4j store directory /home/travis/.arduino15

Loading configuration...

Initializing packages...

Preparing boards...

Verifying...

fork/exec /bin/xtensa-lx106-elf-g++: no such file or directory

------------------------------------------------------------------------

I didn't change anything in my .travis.yml. But the error is always the same. Testing against ESP32 and nRF52 works fine.

Anybody has an idea?

per1234 commented 4 years ago

Try clearing the cache on Travis CI: https://docs.travis-ci.com/user/caching/#clearing-caches

beegee-tokyo commented 4 years ago

@per1234 Clearing the cache helped. Thank you.