mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Ignore warning caused by strcpy in the ESP8266 core
This commit is contained in:
parent
91c2d239a2
commit
a510901c7a
1 changed files with 4 additions and 1 deletions
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
@ -33,7 +33,10 @@ jobs:
|
||||||
# See: https://travis-ci.org/github/felis/USB_Host_Shield_2.0/jobs/743787235
|
# See: https://travis-ci.org/github/felis/USB_Host_Shield_2.0/jobs/743787235
|
||||||
if [[ "${{ matrix.example }}" != *"bidirectional_converter" ]]; then TEENSY35="--board=teensy35"; TEENSY36="--board=teensy36"; TEENSY40="--board=teensy40"; TEENSY41="--board=teensy41"; fi
|
if [[ "${{ matrix.example }}" != *"bidirectional_converter" ]]; then TEENSY35="--board=teensy35"; TEENSY36="--board=teensy36"; TEENSY40="--board=teensy40"; TEENSY41="--board=teensy41"; fi
|
||||||
|
|
||||||
pio ci --lib="." $UNO --board=genuino101 --board=teensylc $TEENSY40 $TEENSY41 --board=esp12e --board=nodemcu
|
pio ci --lib="." $UNO --board=genuino101 --board=teensylc $TEENSY40 $TEENSY41
|
||||||
|
|
||||||
|
# Ignore warning caused by strcpy in the ESP8266 core
|
||||||
|
pio ci --lib="." --board=esp12e --board=nodemcu --project-option="build_flags=-Wno-array-bounds"
|
||||||
|
|
||||||
# Teensy 3.x depends on the SPI4Teensy3 library: https://platformio.org/lib/show/417/SPI4Teensy3
|
# Teensy 3.x depends on the SPI4Teensy3 library: https://platformio.org/lib/show/417/SPI4Teensy3
|
||||||
pio ci --lib="." --board=teensy30 --board=teensy31 $TEENSY35 $TEENSY36 --project-option="lib_deps=SPI4Teensy3"
|
pio ci --lib="." --board=teensy30 --board=teensy31 $TEENSY35 $TEENSY36 --project-option="lib_deps=SPI4Teensy3"
|
||||||
|
|
Loading…
Reference in a new issue