You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
661 B
23 lines
661 B
6 years ago
|
#!/usr/bin/env bash
|
||
6 years ago
|
#
|
||
|
# Build tests for STM32F103RE
|
||
|
#
|
||
6 years ago
|
|
||
|
# exit on first failure
|
||
|
set -e
|
||
|
|
||
5 years ago
|
#
|
||
|
# Build with the default configurations
|
||
|
#
|
||
6 years ago
|
restore_configs
|
||
5 years ago
|
opt_set MOTHERBOARD BOARD_STM32F103RE
|
||
6 years ago
|
opt_set EXTRUDERS 2
|
||
6 years ago
|
opt_set SERIAL_PORT -1
|
||
6 years ago
|
opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT \
|
||
6 years ago
|
PAREN_COMMENTS GCODE_MOTION_MODES SINGLENOZZLE TOOLCHANGE_FILAMENT_SWAP TOOLCHANGE_PARK \
|
||
5 years ago
|
BAUD_RATE_GCODE GCODE_MACROS NOZZLE_PARK_FEATURE NOZZLE_CLEAN_FEATURE
|
||
6 years ago
|
exec_test $1 $2 "STM32F1R EEPROM_SETTINGS EEPROM_CHITCHAT REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT PAREN_COMMENTS GCODE_MOTION_MODES"
|
||
6 years ago
|
|
||
6 years ago
|
# cleanup
|
||
6 years ago
|
restore_configs
|