diff --git a/.github/scripts/sketch_utils.sh b/.github/scripts/sketch_utils.sh index 3cac90054a2..8b0b5199aed 100755 --- a/.github/scripts/sketch_utils.sh +++ b/.github/scripts/sketch_utils.sh @@ -472,3 +472,9 @@ case "$cmd" in echo "$USAGE" exit 2 esac + + + + + + diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7a29026f4a5..797b82d5212 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -64,7 +64,7 @@ jobs: call-build-tests: name: Build tests - uses: espressif/arduino-esp32/.github/workflows/build_tests.yml@master + uses: ./.github/workflows/build_tests.yml@master needs: gen-matrix if: github.event.action != 'closed' strategy: @@ -77,7 +77,7 @@ jobs: call-hardware-tests: name: Run tests on hardware - uses: espressif/arduino-esp32/.github/workflows/hw.yml@master + uses: ./.github/workflows/hw.yml@master needs: [gen-matrix, call-build-tests] if: | github.repository == 'espressif/arduino-esp32' && @@ -94,7 +94,7 @@ jobs: call-wokwi-tests: name: Run tests on Wokwi - uses: espressif/arduino-esp32/.github/workflows/wokwi.yml@master + uses: ./.github/workflows/wokwi.yml@master needs: [gen-matrix, call-build-tests] if: github.event.action != 'closed' strategy: @@ -111,7 +111,7 @@ jobs: # This job is disabled for now call-qemu-tests: name: Run tests on QEMU - uses: espressif/arduino-esp32/.github/workflows/qemu.yml@master + uses: ./.github/workflows/qemu.yml@master needs: [gen-matrix, call-build-tests] if: false strategy: diff --git a/cores/esp32/base64.cpp b/cores/esp32/base64.cpp index 8fa9617668c..216b6c8c9b3 100644 --- a/cores/esp32/base64.cpp +++ b/cores/esp32/base64.cpp @@ -59,3 +59,7 @@ String base64::encode(const uint8_t *data, size_t length) { String base64::encode(const String &text) { return base64::encode((uint8_t *)text.c_str(), text.length()); } + + + +