Skip to content

Ci/tests refactor #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/scripts/sketch_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -472,3 +472,9 @@ case "$cmd" in
echo "$USAGE"
exit 2
esac






8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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' &&
Expand All @@ -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:
Expand All @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions cores/esp32/base64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}