From 8dbfcb97fb276cc8f89880b356eeed22518c6dd1 Mon Sep 17 00:00:00 2001 From: Patrick Grawehr Date: Sat, 16 Dec 2023 21:38:49 +0100 Subject: [PATCH] Getting close? --- eng/ArduinoCsCI.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/ArduinoCsCI.cmd b/eng/ArduinoCsCI.cmd index cfa9cd1aca..57effdf321 100644 --- a/eng/ArduinoCsCI.cmd +++ b/eng/ArduinoCsCI.cmd @@ -5,7 +5,7 @@ REM Second argument is either "Debug" or "Release" if %1!==! goto :usage REM Defines the revision to check out in the ExtendedConfigurableFirmata repo -set FIRMATA_SIMULATOR_CHECKOUT_REVISION=e2cfb5223aeb71e3a0756d67619db6c238b6acb5 +set FIRMATA_SIMULATOR_CHECKOUT_REVISION=4a3b895c062c8e48685b9018d642d2c5ea84c354 set RUN_COMPILER_TESTS=FALSE choco install -y --no-progress arduino-cli @@ -29,7 +29,7 @@ arduino-cli core install esp32:esp32 git fetch --all git branch --list REM Check whether any compiler files have changed - if so, enable the (long running) compiler tests -git diff --name-status main | find /C /I "tools/ArduinoCsCompiler" +git diff --name-status origin/main | find /C /I "tools/ArduinoCsCompiler" REM Find returns 1 when the string was NOT found, we want to set the variable to true when it does find something if %errorlevel%==0 set RUN_COMPILER_TESTS=TRUE