My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

.travis.yml 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. ---
  2. language: c
  3. #
  4. notifications:
  5. email: false
  6. #
  7. before_install:
  8. #
  9. # Fetch the tag information for the current branch
  10. - git fetch origin --tags
  11. #
  12. # Publish the buildroot script folder
  13. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  14. - ln -s ${TRAVIS_BUILD_DIR}/buildroot/bin/ ~/bin
  15. #
  16. # Start fb X server
  17. - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
  18. - sleep 3
  19. - export DISPLAY=:1.0
  20. #
  21. install:
  22. #
  23. # Install arduino 1.6.10
  24. - wget http://downloads-02.arduino.cc/arduino-1.6.10-linux64.tar.xz
  25. - tar xf arduino-1.6.10-linux64.tar.xz
  26. - sudo mv arduino-1.6.10 /usr/local/share/arduino
  27. - ln -s /usr/local/share/arduino/arduino ${TRAVIS_BUILD_DIR}/buildroot/bin/arduino
  28. #
  29. # Install: LiquidCrystal_I2C library
  30. - git clone https://github.com/kiyoshigawa/LiquidCrystal_I2C.git
  31. - mv LiquidCrystal_I2C/LiquidCrystal_I2C /usr/local/share/arduino/libraries/LiquidCrystal_I2C
  32. #
  33. # Install: LiquidTWI2 library
  34. - git clone https://github.com/lincomatic/LiquidTWI2.git
  35. - sudo mv LiquidTWI2 /usr/local/share/arduino/libraries/LiquidTWI2
  36. #
  37. # Install: Monochrome Graphics Library for LCDs and OLEDs
  38. - git clone https://github.com/olikraus/U8glib_Arduino.git
  39. - sudo mv U8glib_Arduino /usr/local/share/arduino/libraries/U8glib
  40. #
  41. # Install: L6470 Stepper Motor Driver library
  42. # - git clone https://github.com/ameyer/Arduino-L6470.git
  43. # - sudo mv Arduino-L6470/L6470 /usr/local/share/arduino/libraries/L6470
  44. #
  45. # Install: TMC26X Stepper Motor Controller library
  46. # - git clone https://github.com/trinamic/TMC26XStepper.git
  47. # - sudo mv TMC26XStepper /usr/local/share/arduino/libraries/TMC26XStepper
  48. #
  49. # Install: TMC2130 Stepper Motor Controller library
  50. - git clone https://github.com/teemuatlut/TMC2130Stepper.git
  51. - sudo mv TMC2130Stepper /usr/local/share/arduino/libraries/TMC2130Stepper
  52. #
  53. before_script:
  54. #
  55. # Change current working directory to the build dir
  56. - cd ${TRAVIS_BUILD_DIR}
  57. #
  58. # Generate custom version include
  59. - generate_version_header_for_marlin ${TRAVIS_BUILD_DIR}/Marlin
  60. - cat ${TRAVIS_BUILD_DIR}/Marlin/_Version.h
  61. #
  62. script:
  63. #
  64. # Backup Configuration.h, Configuration_adv.h, and pins_RAMPS.h
  65. #
  66. - cp Marlin/Configuration.h Marlin/Configuration.h.backup
  67. - cp Marlin/Configuration_adv.h Marlin/Configuration_adv.h.backup
  68. - cp Marlin/pins_RAMPS.h Marlin/pins_RAMPS.h.backup
  69. #
  70. # Build with the default configurations
  71. #
  72. - build_marlin
  73. #
  74. # Test heated bed temperature sensor
  75. #
  76. - opt_set TEMP_SENSOR_BED 1
  77. - build_marlin
  78. #
  79. # Test 2 extruders on basic RAMPS 1.4
  80. #
  81. - opt_set MOTHERBOARD BOARD_RAMPS_14_EEB
  82. - opt_set EXTRUDERS 2
  83. - opt_set TEMP_SENSOR_1 1
  84. - build_marlin
  85. #
  86. # Test 5 extruders on AZTEEG_X3_PRO (can use any board with >=5 extruders defined)
  87. # Include a test for LIN_ADVANCE here also
  88. #
  89. - opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
  90. - opt_set EXTRUDERS 5
  91. - opt_set TEMP_SENSOR_1 1
  92. - opt_set TEMP_SENSOR_2 5
  93. - opt_set TEMP_SENSOR_3 20
  94. - opt_set TEMP_SENSOR_4 999
  95. - opt_set TEMP_SENSOR_BED 1
  96. - opt_enable_adv LIN_ADVANCE
  97. - build_marlin
  98. #
  99. # Test PIDTEMPBED
  100. #
  101. - restore_configs
  102. - opt_set TEMP_SENSOR_BED 1
  103. - opt_enable PIDTEMPBED
  104. - build_marlin
  105. #
  106. # Test MAX6675
  107. #
  108. - restore_configs
  109. - opt_set TEMP_SENSOR_0 -2
  110. - build_marlin
  111. #
  112. # Test a "Fix Mounted" Probe along with Safe Homing
  113. #
  114. - restore_configs
  115. - opt_enable FIX_MOUNTED_PROBE Z_SAFE_HOMING
  116. - build_marlin
  117. #
  118. # ...with AUTO_BED_LEVELING_LINEAR, Z_MIN_PROBE_REPEATABILITY_TEST, and DEBUG_LEVELING_FEATURE
  119. #
  120. - opt_enable AUTO_BED_LEVELING_LINEAR Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE
  121. - opt_set ABL_GRID_POINTS_X 16
  122. - opt_set ABL_GRID_POINTS_Y 16
  123. - build_marlin
  124. #
  125. # Test a simple build of AUTO_BED_LEVELING_UBL
  126. #
  127. - restore_configs
  128. - opt_enable AUTO_BED_LEVELING_UBL UBL_G26_MESH_EDITING ENABLE_LEVELING_FADE_HEIGHT FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
  129. - opt_enable_adv CUSTOM_USER_MENUS
  130. - build_marlin
  131. #
  132. # Test a Sled Z Probe
  133. # ...with AUTO_BED_LEVELING_LINEAR, DEBUG_LEVELING_FEATURE, EEPROM_SETTINGS, and EEPROM_CHITCHAT
  134. #
  135. - restore_configs
  136. - opt_enable Z_PROBE_SLED AUTO_BED_LEVELING_LINEAR DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
  137. - build_marlin
  138. #
  139. # Test a Servo Probe
  140. # ...with AUTO_BED_LEVELING_3POINT, DEBUG_LEVELING_FEATURE, EEPROM_SETTINGS, EEPROM_CHITCHAT, EXTENDED_CAPABILITIES_REPORT, and AUTO_REPORT_TEMPERATURES
  141. #
  142. - restore_configs
  143. - opt_enable NUM_SERVOS Z_ENDSTOP_SERVO_NR Z_SERVO_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
  144. - opt_enable AUTO_BED_LEVELING_3POINT DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
  145. - opt_enable_adv EXTENDED_CAPABILITIES_REPORT AUTO_REPORT_TEMPERATURES AUTOTEMP
  146. - build_marlin
  147. #
  148. # Test MESH_BED_LEVELING feature, with LCD
  149. #
  150. - restore_configs
  151. - opt_enable MESH_BED_LEVELING MESH_G28_REST_ORIGIN LCD_BED_LEVELING ULTIMAKERCONTROLLER
  152. - build_marlin
  153. #
  154. # Test PROBE_MANUALLY feature, with LCD support
  155. #
  156. - restore_configs
  157. - opt_enable PROBE_MANUALLY AUTO_BED_LEVELING_BILINEAR LCD_BED_LEVELING ULTIMAKERCONTROLLER
  158. - build_marlin
  159. #
  160. # Test EEPROM_SETTINGS, EEPROM_CHITCHAT, M100_FREE_MEMORY_WATCHER,
  161. # INCH_MODE_SUPPORT, TEMPERATURE_UNITS_SUPPORT
  162. #
  163. - restore_configs
  164. - opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT M100_FREE_MEMORY_WATCHER M100_FREE_MEMORY_DUMPER M100_FREE_MEMORY_CORRUPTOR INCH_MODE_SUPPORT TEMPERATURE_UNITS_SUPPORT
  165. - build_marlin
  166. #
  167. # Mixing Extruder with 5 steppers
  168. #
  169. - restore_configs
  170. - opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
  171. - opt_enable MIXING_EXTRUDER
  172. - opt_set MIXING_STEPPERS 5
  173. - build_marlin
  174. #
  175. # Test DUAL_X_CARRIAGE
  176. #
  177. - restore_configs
  178. - opt_set MOTHERBOARD BOARD_RUMBA
  179. - opt_set EXTRUDERS 2
  180. - opt_set TEMP_SENSOR_1 1
  181. - opt_enable USE_XMAX_PLUG
  182. - opt_enable_adv DUAL_X_CARRIAGE
  183. - build_marlin
  184. #
  185. # Test SPEAKER with BOARD_BQ_ZUM_MEGA_3D and BQ_LCD_SMART_CONTROLLER
  186. #
  187. - restore_configs
  188. - opt_set MOTHERBOARD BOARD_BQ_ZUM_MEGA_3D
  189. - opt_set LCD_FEEDBACK_FREQUENCY_DURATION_MS 10
  190. - opt_set LCD_FEEDBACK_FREQUENCY_HZ 100
  191. - opt_enable BQ_LCD_SMART_CONTROLLER SPEAKER
  192. #
  193. # Test SWITCHING_EXTRUDER
  194. #
  195. - restore_configs
  196. - opt_set MOTHERBOARD BOARD_RUMBA
  197. - opt_set EXTRUDERS 2
  198. - opt_enable NUM_SERVOS
  199. - opt_set NUM_SERVOS 1
  200. - opt_set TEMP_SENSOR_1 1
  201. - opt_enable SWITCHING_EXTRUDER ULTIMAKERCONTROLLER
  202. - build_marlin
  203. #
  204. # Test MINIRAMBO for PWM_MOTOR_CURRENT
  205. #
  206. - restore_configs
  207. - opt_set MOTHERBOARD BOARD_MINIRAMBO
  208. - build_marlin
  209. #
  210. # Test FILAMENT_CHANGE_FEATURE, PARK_HEAD_ON_PAUSE, and LCD_INFO_MENU
  211. #
  212. - restore_configs
  213. - opt_enable ULTIMAKERCONTROLLER
  214. - opt_enable_adv FILAMENT_CHANGE_FEATURE PARK_HEAD_ON_PAUSE LCD_INFO_MENU
  215. - build_marlin
  216. #
  217. # Enable filament sensor
  218. #
  219. - restore_configs
  220. - opt_enable FILAMENT_WIDTH_SENSOR
  221. - build_marlin
  222. #
  223. # Enable filament sensor with LCD display
  224. #
  225. - opt_enable ULTIMAKERCONTROLLER FILAMENT_LCD_DISPLAY
  226. - build_marlin
  227. #
  228. # Enable BEZIER_CURVE_SUPPORT, EXPERIMENTAL_I2CBUS, and I2C_SLAVE_ADDRESS
  229. #
  230. - restore_configs
  231. - opt_enable_adv BEZIER_CURVE_SUPPORT EXPERIMENTAL_I2CBUS
  232. - opt_set_adv I2C_SLAVE_ADDRESS 63
  233. - build_marlin
  234. #
  235. # Enable COREXY
  236. #
  237. - restore_configs
  238. - opt_enable COREXY
  239. - build_marlin
  240. #
  241. # Enable COREYX (swapped)
  242. #
  243. - restore_configs
  244. - opt_enable COREYX
  245. - build_marlin
  246. #
  247. # Enable Z_DUAL_STEPPER_DRIVERS, Z_DUAL_ENDSTOPS
  248. #
  249. - restore_configs
  250. - opt_enable_adv Z_DUAL_STEPPER_DRIVERS Z_DUAL_ENDSTOPS
  251. - pins_set RAMPS X_MAX_PIN -1
  252. - opt_set_adv Z2_MAX_PIN 2
  253. - build_marlin
  254. #
  255. # Test PRINTCOUNTER
  256. #
  257. - restore_configs
  258. - opt_enable PRINTCOUNTER
  259. - build_marlin
  260. #
  261. # Test NOZZLE_PARK_FEATURE
  262. #
  263. - restore_configs
  264. - opt_enable NOZZLE_PARK_FEATURE
  265. - build_marlin
  266. #
  267. # Test NOZZLE_CLEAN_FEATURE
  268. #
  269. - restore_configs
  270. - opt_enable NOZZLE_CLEAN_FEATURE
  271. - build_marlin
  272. #
  273. #
  274. ######## STANDARD LCD/PANELS ##############
  275. #
  276. # ULTRA_LCD
  277. #
  278. - restore_configs
  279. - opt_enable ULTRA_LCD
  280. - build_marlin
  281. #
  282. # DOGLCD
  283. #
  284. - restore_configs
  285. - opt_enable DOGLCD
  286. - build_marlin
  287. #
  288. # ULTIMAKERCONTROLLER
  289. #
  290. - restore_configs
  291. - opt_enable ULTIMAKERCONTROLLER
  292. - build_marlin
  293. #
  294. # MAKRPANEL
  295. # Needs to use Melzi and Sanguino hardware
  296. #
  297. #- restore_configs
  298. #- opt_enable MAKRPANEL
  299. #- build_marlin
  300. #
  301. # REPRAP_DISCOUNT_SMART_CONTROLLER, SDSUPPORT, and BABYSTEPPING
  302. #
  303. - restore_configs
  304. - opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT BABYSTEPPING
  305. - build_marlin
  306. #
  307. # G3D_PANEL
  308. #
  309. - restore_configs
  310. - opt_enable G3D_PANEL SDSUPPORT
  311. - build_marlin
  312. #
  313. # Add SDCARD_SORT_ALPHA, test G3D_PANEL again
  314. #
  315. - opt_enable_adv SDCARD_SORT_ALPHA
  316. - opt_set_adv SDSORT_GCODE true
  317. - opt_set_adv SDSORT_USES_RAM true
  318. - opt_set_adv SDSORT_USES_STACK true
  319. - opt_set_adv SDSORT_CACHE_NAMES true
  320. - build_marlin
  321. #
  322. # REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
  323. #
  324. - restore_configs
  325. - opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
  326. - build_marlin
  327. #
  328. # REPRAPWORLD_KEYPAD
  329. #
  330. # Cant find configuration details to get it to compile
  331. #- restore_configs
  332. #- opt_enable ULTRA_LCD REPRAPWORLD_KEYPAD REPRAPWORLD_KEYPAD_MOVE_STEP
  333. #- build_marlin
  334. #
  335. # RA_CONTROL_PANEL
  336. #
  337. - restore_configs
  338. - opt_enable RA_CONTROL_PANEL PINS_DEBUGGING
  339. - build_marlin
  340. #
  341. ######## I2C LCD/PANELS ##############
  342. #
  343. # !!!ATTENTION!!!
  344. # Most I2C configurations are failing at the moment because they require
  345. # a different Liquid Crystal library "LiquidTWI2".
  346. #
  347. # LCD_I2C_SAINSMART_YWROBOT
  348. #
  349. #- restore_configs
  350. #- opt_enable LCD_I2C_SAINSMART_YWROBOT
  351. #- build_marlin
  352. #
  353. # LCD_I2C_PANELOLU2
  354. #
  355. #- restore_configs
  356. #- opt_enable LCD_I2C_PANELOLU2
  357. #- build_marlin
  358. #
  359. # LCD_I2C_VIKI
  360. #
  361. #- restore_configs
  362. #- opt_enable LCD_I2C_VIKI
  363. #- build_marlin
  364. #
  365. # LCM1602
  366. #
  367. - restore_configs
  368. - opt_enable LCM1602
  369. - build_marlin
  370. #
  371. #
  372. ######## Example Configurations ##############
  373. #
  374. # BQ Hephestos 2
  375. - restore_configs
  376. - use_example_configs Hephestos_2
  377. - build_marlin
  378. #
  379. # Delta Config (generic) + ABL bilinear + PROBE_MANUALLY
  380. - restore_configs
  381. - use_example_configs delta/generic
  382. - opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_CALIBRATION_MENU AUTO_BED_LEVELING_BILINEAR PROBE_MANUALLY
  383. - build_marlin
  384. #
  385. # Delta Config (generic) + UBL + ALLEN_KEY + OLED_PANEL_TINYBOY2 + EEPROM_SETTINGS
  386. #
  387. - use_example_configs delta/generic
  388. - opt_disable DISABLE_MIN_ENDSTOPS
  389. - opt_enable AUTO_BED_LEVELING_UBL Z_PROBE_ALLEN_KEY EEPROM_SETTINGS EEPROM_CHITCHAT OLED_PANEL_TINYBOY2
  390. - build_marlin
  391. #
  392. # Delta Config (FLSUN AC because it's complex)
  393. #
  394. - use_example_configs delta/FLSUN/auto_calibrate
  395. - build_marlin
  396. #
  397. # Makibox Config need to check board type for Teensy++ 2.0
  398. #
  399. #- use_example_configs makibox
  400. #- build_marlin
  401. #
  402. # SCARA Config
  403. #
  404. - use_example_configs SCARA
  405. - opt_enable AUTO_BED_LEVELING_BILINEAR FIX_MOUNTED_PROBE USE_ZMIN_PLUG EEPROM_SETTINGS EEPROM_CHITCHAT ULTIMAKERCONTROLLER
  406. - build_marlin
  407. #
  408. # TMC2130 Config
  409. #
  410. - restore_configs
  411. - opt_enable_adv HAVE_TMC2130 X_IS_TMC2130 Y_IS_TMC2130 Z_IS_TMC2130
  412. - build_marlin
  413. - opt_enable_adv AUTOMATIC_CURRENT_CONTROL STEALTHCHOP HYBRID_THRESHOLD SENSORLESS_HOMING
  414. - build_marlin
  415. #
  416. # tvrrug Config need to check board type for sanguino atmega644p
  417. #
  418. #- use_example_configs tvrrug/Round2
  419. #- build_marlin
  420. #
  421. #
  422. ######## Board Types #############
  423. #
  424. # To be added in nightly test branch
  425. #