Files
Marlin/buildroot/share/tests/esp32-tests
T
InsanityAutomation 696d6cfb90 Bump to head, add skr13
2020-02-15 17:26:58 -05:00

23 lines
424 B
Bash
Executable File

#!/usr/bin/env bash
#
# Build tests for ESP32
#
# exit on first failure
set -e
#
# Build with the default configurations
#
restore_configs
opt_set MOTHERBOARD BOARD_ESPRESSIF_ESP32
opt_enable WIFISUPPORT GCODE_MACROS BAUD_RATE_GCODE
opt_add WIFI_SSID "\"ssid\""
opt_add WIFI_PWD "\"password\""
opt_set TX_BUFFER_SIZE 64
opt_add WEBSUPPORT
exec_test $1 $2 "ESP32 with WIFISUPPORT and WEBSUPPORT"
# cleanup
restore_configs