My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

.travis.yml 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. ---
  2. language: c
  3. #
  4. before_install:
  5. #
  6. # Fetch the tag information for the current branch
  7. - git fetch origin --tags
  8. #
  9. # Publish the buildroot script folder
  10. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  11. - ln -s ${TRAVIS_BUILD_DIR}/buildroot/bin/ ~/bin
  12. #
  13. # Start fb X server
  14. - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
  15. - sleep 3
  16. - export DISPLAY=:1.0
  17. #
  18. install:
  19. #
  20. # Install arduino 1.6.8
  21. - wget http://downloads-02.arduino.cc/arduino-1.6.8-linux64.tar.xz
  22. - tar xf arduino-1.6.8-linux64.tar.xz
  23. - sudo mv arduino-1.6.8 /usr/local/share/arduino
  24. - ln -s /usr/local/share/arduino/arduino ${TRAVIS_BUILD_DIR}/buildroot/bin/arduino
  25. #
  26. # Install: LiquidCrystal_I2C library
  27. - git clone https://github.com/kiyoshigawa/LiquidCrystal_I2C.git
  28. - mv LiquidCrystal_I2C/LiquidCrystal_I2C /usr/local/share/arduino/libraries/LiquidCrystal_I2C
  29. #
  30. # Install: LiquidTWI2 library
  31. - git clone https://github.com/lincomatic/LiquidTWI2.git
  32. - sudo mv LiquidTWI2 /usr/local/share/arduino/libraries/LiquidTWI2
  33. #
  34. # Install: Monochrome Graphics Library for LCDs and OLEDs
  35. - arduino --install-library "U8glib"
  36. #
  37. # Install: L6470 Stepper Motor Driver library
  38. - git clone https://github.com/ameyer/Arduino-L6470.git
  39. - sudo mv Arduino-L6470/L6470 /usr/local/share/arduino/libraries/L6470
  40. #
  41. # Install: TMC26X Stepper Motor Controller library
  42. - git clone https://github.com/trinamic/TMC26XStepper.git
  43. - sudo mv TMC26XStepper /usr/local/share/arduino/libraries/TMC26XStepper
  44. #
  45. before_script:
  46. #
  47. # Change current working directory to the build dir
  48. - cd ${TRAVIS_BUILD_DIR}
  49. #
  50. # Generate custom version include
  51. - generate_version_header_for_marlin ${TRAVIS_BUILD_DIR}/Marlin
  52. - cat ${TRAVIS_BUILD_DIR}/Marlin/_Version.h
  53. #
  54. script:
  55. #
  56. # Backup Configuration.h, Configuration_adv.h, and pins_RAMPS_14.h
  57. #
  58. - cp Marlin/Configuration.h Marlin/Configuration.h.backup
  59. - cp Marlin/Configuration_adv.h Marlin/Configuration_adv.h.backup
  60. - cp Marlin/pins_RAMPS_14.h Marlin/pins_RAMPS_14.h.backup
  61. #
  62. # Build with the default configurations
  63. #
  64. - build_marlin
  65. #
  66. # Test heated bed temperature sensor
  67. #
  68. - opt_set TEMP_SENSOR_BED 1
  69. - build_marlin
  70. #
  71. # Test 2 extruders on basic RAMPS 1.4
  72. #
  73. - opt_set MOTHERBOARD BOARD_RAMPS_14_EEB
  74. - opt_set EXTRUDERS 2
  75. - opt_set TEMP_SENSOR_1 1
  76. - build_marlin
  77. #
  78. # Test 3 extruders on RUMBA (can use any board with >=3 extruders defined)
  79. #
  80. - opt_set MOTHERBOARD BOARD_RUMBA
  81. - opt_set EXTRUDERS 3
  82. - opt_set TEMP_SENSOR_2 1
  83. - build_marlin
  84. #
  85. # Test PIDTEMPBED
  86. #
  87. - restore_configs
  88. - opt_enable PIDTEMPBED
  89. - build_marlin
  90. #
  91. # Test AUTO_BED_LEVELING & DEBUG_LEVELING_FEATURE
  92. #
  93. - restore_configs
  94. - opt_enable ENABLE_AUTO_BED_LEVELING DEBUG_LEVELING_FEATURE
  95. - build_marlin
  96. #
  97. # Test MESH_BED_LEVELING feature, with LCD
  98. #
  99. - restore_configs
  100. - opt_enable MESH_BED_LEVELING MESH_G28_REST_ORIGIN MANUAL_BED_LEVELING ULTIMAKERCONTROLLER
  101. - build_marlin
  102. #
  103. # Test AUTO_BED_LEVELING & DEBUG_LEVELING_FEATURE with Servos
  104. #
  105. - opt_enable NUM_SERVOS Z_ENDSTOP_SERVO_NR SERVO_ENDSTOP_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
  106. - build_marlin
  107. #
  108. # Test EEPROM_SETTINGS, EEPROM_CHITCHAT, M100_FREE_MEMORY_WATCHER, INCH_MODE_SUPPORT, TEMPERATURE_UNITS_SUPPORT
  109. #
  110. - restore_configs
  111. - opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT M100_FREE_MEMORY_WATCHER INCH_MODE_SUPPORT TEMPERATURE_UNITS_SUPPORT
  112. - build_marlin
  113. #
  114. # Test DUAL_X_CARRIAGE
  115. #
  116. - restore_configs
  117. - opt_set MOTHERBOARD BOARD_RUMBA
  118. - opt_set EXTRUDERS 2
  119. - opt_set TEMP_SENSOR_1 1
  120. - opt_enable USE_XMAX_PLUG
  121. - opt_enable_adv DUAL_X_CARRIAGE
  122. - build_marlin
  123. #
  124. # Test SPEAKER with BOARD_BQ_ZUM_MEGA_3D and BQ_LCD_SMART_CONTROLLER
  125. #
  126. - restore_configs
  127. - opt_set MOTHERBOARD BOARD_BQ_ZUM_MEGA_3D
  128. - opt_set LCD_FEEDBACK_FREQUENCY_DURATION_MS 10
  129. - opt_set LCD_FEEDBACK_FREQUENCY_HZ 100
  130. - opt_enable BQ_LCD_SMART_CONTROLLER SPEAKER
  131. - build_marlin
  132. #
  133. ### LCDS ###
  134. #
  135. # ULTRA_LCD
  136. #
  137. - restore_configs
  138. - opt_enable ULTRA_LCD
  139. - build_marlin
  140. #
  141. # DOGLCD
  142. #
  143. - restore_configs
  144. - opt_enable DOGLCD
  145. - build_marlin
  146. #
  147. # ULTIMAKERCONTROLLER
  148. #
  149. - restore_configs
  150. - opt_enable ULTIMAKERCONTROLLER
  151. - build_marlin
  152. #
  153. # MAKRPANEL
  154. # Needs to use Melzi and Sanguino hardware
  155. #
  156. #- restore_configs
  157. #- opt_enable MAKRPANEL
  158. #- build_marlin
  159. #
  160. # REPRAP_DISCOUNT_SMART_CONTROLLER, SDSUPPORT, and BABYSTEPPING
  161. #
  162. - restore_configs
  163. - opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT BABYSTEPPING
  164. - build_marlin
  165. #
  166. # G3D_PANEL
  167. #
  168. - restore_configs
  169. - opt_enable G3D_PANEL SDSUPPORT
  170. - build_marlin
  171. #
  172. # REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
  173. #
  174. - restore_configs
  175. - opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
  176. - build_marlin
  177. #
  178. # REPRAPWORLD_KEYPAD
  179. #
  180. # Cant find configuration details to get it to compile
  181. #- restore_configs
  182. #- opt_enable ULTRA_LCD REPRAPWORLD_KEYPAD REPRAPWORLD_KEYPAD_MOVE_STEP
  183. #- build_marlin
  184. #
  185. # RA_CONTROL_PANEL
  186. #
  187. - restore_configs
  188. - opt_enable RA_CONTROL_PANEL
  189. - build_marlin
  190. #
  191. ### I2C PANELS ###
  192. #
  193. # LCD_I2C_SAINSMART_YWROBOT
  194. # Failing at the moment needs different library
  195. #- restore_configs
  196. #- opt_enable LCD_I2C_SAINSMART_YWROBOT
  197. #- build_marlin
  198. #
  199. # LCD_I2C_PANELOLU2
  200. #
  201. - restore_configs
  202. - opt_enable LCD_I2C_PANELOLU2
  203. - build_marlin
  204. #
  205. # LCD_I2C_VIKI
  206. #
  207. - restore_configs
  208. - opt_enable LCD_I2C_VIKI
  209. - build_marlin
  210. #
  211. # LCM1602
  212. #
  213. - restore_configs
  214. - opt_enable LCM1602
  215. - build_marlin
  216. #
  217. # Enable FILAMENTCHANGEENABLE
  218. #
  219. - restore_configs
  220. - opt_enable FILAMENTCHANGEENABLE ULTIMAKERCONTROLLER
  221. - build_marlin
  222. #
  223. # Enable filament sensor
  224. #
  225. - restore_configs
  226. - opt_enable FILAMENT_WIDTH_SENSOR
  227. - build_marlin
  228. #
  229. # Enable filament sensor with LCD display
  230. #
  231. - opt_enable ULTIMAKERCONTROLLER FILAMENT_LCD_DISPLAY
  232. - build_marlin
  233. #
  234. # Enable BEZIER_CURVE_SUPPORT
  235. #
  236. - restore_configs
  237. - opt_enable_adv BEZIER_CURVE_SUPPORT
  238. - build_marlin
  239. #
  240. # Enable COREXY
  241. #
  242. - restore_configs
  243. - opt_enable COREXY
  244. - build_marlin
  245. #
  246. # Enable COREXZ
  247. #
  248. - restore_configs
  249. - opt_enable COREXZ
  250. - build_marlin
  251. #
  252. # Enable Z_DUAL_STEPPER_DRIVERS, Z_DUAL_ENDSTOPS
  253. #
  254. - restore_configs
  255. - opt_enable_adv Z_DUAL_STEPPER_DRIVERS Z_DUAL_ENDSTOPS
  256. - pins_set RAMPS_14 X_MAX_PIN -1
  257. - opt_set_adv Z2_MAX_PIN 2
  258. - build_marlin
  259. #
  260. # Test PRINTCOUNTER
  261. #
  262. - restore_configs
  263. - opt_enable PRINTCOUNTER
  264. - build_marlin
  265. #
  266. #
  267. ######## Example Configurations ##############
  268. #
  269. # BQ Hephestos 2
  270. - restore_configs
  271. - use_example_configs Hephestos_2
  272. - build_marlin
  273. #
  274. # Delta Config (generic)
  275. - restore_configs
  276. - use_example_configs delta/generic
  277. - build_marlin
  278. #
  279. # Delta Config (generic) + ABL + ALLEN_KEY
  280. #
  281. - use_example_configs delta/generic
  282. - opt_disable DISABLE_MIN_ENDSTOPS
  283. - opt_enable AUTO_BED_LEVELING_FEATURE Z_PROBE_ALLEN_KEY
  284. - build_marlin
  285. #
  286. # Delta Config (Mini Kossel)
  287. #
  288. - use_example_configs delta/kossel_mini
  289. - build_marlin
  290. #
  291. # Makibox Config need to check board type for Teensy++ 2.0
  292. #
  293. #- use_example_configs makibox
  294. #- build_marlin
  295. #
  296. # SCARA Config
  297. #
  298. - use_example_configs SCARA
  299. - build_marlin
  300. #
  301. # tvrrug Config need to check board type for sanguino atmega644p
  302. #
  303. #- use_example_configs tvrrug/Round2
  304. #- build_marlin
  305. #
  306. #
  307. ######## Board Types #############
  308. #
  309. # To be added in nightly test branch
  310. #