Fix ESP32 Windows build after battling escape characters.

Add esp32 Windows target to Actions.
This commit is contained in:
Matthew Colvin 2023-08-09 14:55:40 -05:00 committed by MatthewColvin
parent bcfda0641c
commit 64c61425da
2 changed files with 5 additions and 2 deletions

View file

@ -4,7 +4,10 @@ on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View file

@ -91,7 +91,7 @@ build_flags =
; --------------- LVGL Defines -------------------------------------- ; --------------- LVGL Defines --------------------------------------
-D LV_TICK_CUSTOM=1 -D LV_TICK_CUSTOM=1
-D LV_TICK_CUSTOM_INCLUDE="\"Arduino.h\"" -D LV_TICK_CUSTOM_INCLUDE="\"Arduino.h\""
-D LV_TICK_CUSTOM_SYS_TIME_EXPR="\(millis\(\)\)" -D LV_TICK_CUSTOM_SYS_TIME_EXPR="'(millis())'"
; ------------- Includes -------------------------------------------- ; ------------- Includes --------------------------------------------
-I HAL/Targets/ESP32 -I HAL/Targets/ESP32