2020-06-16 02:45:27 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for STM32F103RET6_creality
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build with configs included in the PR
|
|
|
|
#
|
|
|
|
use_example_configs "Creality/Ender-3 V2"
|
2020-07-24 04:09:14 -04:00
|
|
|
opt_enable MARLIN_DEV_MODE
|
2020-11-17 21:04:28 -05:00
|
|
|
exec_test $1 $2 "Ender 3 v2" "$3"
|
2020-06-16 02:45:27 -04:00
|
|
|
|
2020-12-02 04:31:06 -05:00
|
|
|
use_example_configs "Creality/Ender-3 V2"
|
|
|
|
opt_disable CLASSIC_JERK
|
2020-12-02 06:23:34 -05:00
|
|
|
opt_add SDCARD_EEPROM_EMULATION
|
|
|
|
exec_test $1 $2 "Ender 3 v2, SD EEPROM, w/o CLASSIC_JERK" "$3"
|
2020-12-02 04:31:06 -05:00
|
|
|
|
2020-06-16 02:45:27 -04:00
|
|
|
restore_configs
|