Marlin/buildroot/tests/STM32F103RET6_creality-tests
Scott Lahteine 9bc90e7d6f Tests
2020-10-22 22:55:50 -05:00

23 lines
422 B
Bash

#!/usr/bin/env bash
#
# Build tests for STM32F103RET6_creality
#
# exit on first failure
set -e
#
# Build with Ender-3 V2 configs
#
use_example_configs "Creality/Ender-3 V2"
exec_test $1 $2 "Ender 3 v2 with Stock UI"
#
# Build with Ender-3 V2 configs but with MarlinUI
#
opt_disable DWIN_CREALITY_LCD
opt_add DWIN_MARLINUI_PORTRAIT
opt_enable MARLIN_DEV_MODE
exec_test $1 $2 "Ender 3 v2 with MarlinUI"
restore_configs