2019-02-23 02:09:10 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Build tests for Linux x86_64
|
|
|
|
#
|
|
|
|
|
|
|
|
# exit on first failure
|
|
|
|
set -e
|
|
|
|
|
2019-08-19 06:29:59 +02:00
|
|
|
#
|
|
|
|
# Build with the default configurations
|
|
|
|
#
|
2019-02-23 02:09:10 +01:00
|
|
|
restore_configs
|
2021-03-03 07:15:56 +01:00
|
|
|
opt_set MOTHERBOARD BOARD_LINUX_RAMPS TEMP_SENSOR_BED 1
|
2019-07-30 09:30:00 +02:00
|
|
|
opt_enable PIDTEMPBED EEPROM_SETTINGS BAUD_RATE_GCODE
|
2020-11-18 03:04:28 +01:00
|
|
|
exec_test $1 $2 "Linux with EEPROM" "$3"
|
2019-02-23 02:09:10 +01:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
restore_configs
|