mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-01 04:50:58 +02:00
13 lines
267 B
Bash
13 lines
267 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
# run cmake tests
|
||
|
tools/check_cmakelists.sh
|
||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||
|
|
||
|
# run sketch tests
|
||
|
tools/build-tests.sh
|
||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||
|
|
||
|
# zip the package if tagged build, otherwise finish here
|
||
|
tools/build-release.sh -a$ESP32_GITHUB_TOKEN
|