From 9293a2b0b806825942b45d377abb456c712b1d73 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Thu, 15 Jul 2021 11:30:25 +0200 Subject: [PATCH] Ignore more warnings caused by strcpy in the ESP8266 core --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6e833d5b..cf81ab04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,7 @@ jobs: 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" + pio ci --lib="." --board=esp12e --board=nodemcu --project-option="build_flags=-Wno-array-bounds -Wno-restrict" # 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"