2019-08-19 04:29:59 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for AVR ATmega1280
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build with the default configurations
|
|
|
|
#
|
2019-09-03 00:49:58 +00:00
|
|
|
#restore_configs
|
|
|
|
#exec_test $1 $2 "Default Configuration"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test MESH_BED_LEVELING feature, with LCD
|
|
|
|
#
|
2019-08-19 04:29:59 +00:00
|
|
|
restore_configs
|
2019-10-10 00:46:10 +00:00
|
|
|
opt_set LCD_LANGUAGE an
|
2019-09-16 20:01:46 +00:00
|
|
|
opt_enable SPINDLE_FEATURE ULTIMAKERCONTROLLER LCD_BED_LEVELING \
|
|
|
|
MESH_BED_LEVELING ENABLE_LEVELING_FADE_HEIGHT MESH_G28_REST_ORIGIN \
|
|
|
|
G26_MESH_VALIDATION MESH_EDIT_MENU
|
2019-09-03 00:49:58 +00:00
|
|
|
exec_test $1 $2 "Spindle, MESH_BED_LEVELING, and LCD"
|
|
|
|
|
2019-08-19 04:29:59 +00:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
restore_configs
|