1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #!/usr/bin/env bash
- #
- # Build tests for DUE (Atmel SAM3X8E ARM Cortex-M3)
- #
-
- # exit on first failure
- set -e
-
- restore_configs
- opt_set
- opt_set
- opt_set
- opt_set
- opt_set
- opt_set
- opt_enable
- FIX_MOUNTED_PROBE
- EEPROM_SETTINGS
- BLINKM
- NEOPIXEL_LED
- NOZZLE_PARK_FEATURE
- AUTO_BED_LEVELING_BILINEAR
- SKEW_CORRECTION
- BACKLASH_COMPENSATION
- FWRETRACT
- PSU_CONTROL
- PIDTEMPBED
- PINS_DEBUGGING
- EXTENSIBLE_UI
- opt_add
- opt_set
- opt_set
- opt_set
- opt_add
- opt_set
- exec_test
-
- restore_configs
- opt_set
- opt_enable
- Z_MULTI_ENDSTOPS
- Z_SAFE_HOMING
- #TOUCH_UI_FTDI_EVE
- opt_set
- opt_add
- opt_add
- opt_add
- opt_add
- pins_set /RAMPS X_MAX_PIN -1
- pins_set ramps/
- exec_test
-
- #
- # Test
- #
- restore_configs
- opt_set
- opt_set
- opt_set
- opt_set
- opt_enable
- exec_test
|