2015-01-03 11:43:40 +00:00
|
|
|
---
|
|
|
|
language: c
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 11:43:40 +00:00
|
|
|
before_install:
|
2015-06-08 12:44:49 +00:00
|
|
|
# Travis runs a detached head. We need to find the current branch
|
|
|
|
- git checkout `git branch --contains HEAD | grep -v '*'`
|
|
|
|
# Also tags for the root(s) of the minor version(s)
|
|
|
|
- git fetch origin --tags
|
2015-06-02 13:01:40 +00:00
|
|
|
- mkdir ~/bin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 11:43:40 +00:00
|
|
|
install:
|
2015-06-14 01:16:19 +00:00
|
|
|
# Install arduino 1.6.4
|
|
|
|
- wget http://downloads-02.arduino.cc/arduino-1.6.4-linux64.tar.xz
|
|
|
|
- tar Jxf arduino-1.6.4-linux64.tar.xz
|
|
|
|
- sudo mv arduino-1.6.4 /usr/local/share/arduino
|
|
|
|
- ln -s /usr/local/share/arduino/arduino ~/bin/arduino
|
|
|
|
# Our custom build commands
|
2015-06-02 13:01:40 +00:00
|
|
|
- mv LinuxAddons/bin/* ~/bin/
|
2015-06-14 01:16:19 +00:00
|
|
|
- ls -la ~/bin
|
|
|
|
# install our platform
|
|
|
|
- cp -r ArduinoAddons/Arduino_1.6.x/hardware/* /usr/local/share/arduino/hardware
|
|
|
|
# copy libraries to arduino dir, as conditional includes do not work in .ino files
|
|
|
|
- cp -r /usr/local/share/arduino/hardware/marlin/avr/libraries/* /usr/local/share/arduino/libraries/
|
|
|
|
- cp -r ArduinoAddons/Arduino_1.6.x/libraries/* /usr/local/share/arduino/libraries/
|
|
|
|
# add LiquidCrystal_I2C & LiquidTWI2 libraries
|
|
|
|
- git clone https://github.com/kiyoshigawa/LiquidCrystal_I2C.git
|
|
|
|
- mv LiquidCrystal_I2C/LiquidCrystal_I2C /usr/local/share/arduino/libraries/LiquidCrystal_I2C
|
|
|
|
- git clone https://github.com/lincomatic/LiquidTWI2.git
|
|
|
|
- mv LiquidTWI2 /usr/local/share/arduino/libraries/LiquidTWI2
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 11:43:40 +00:00
|
|
|
before_script:
|
2015-06-14 01:16:19 +00:00
|
|
|
# arduino requires an X server even with command line
|
|
|
|
# https://github.com/arduino/Arduino/issues/1981
|
|
|
|
- Xvfb :1 -screen 0 1024x768x16 &> xvfb.log &
|
2015-01-03 11:43:40 +00:00
|
|
|
# change back to home directory for compiling
|
2015-01-03 16:50:05 +00:00
|
|
|
- cd $TRAVIS_BUILD_DIR
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 11:43:40 +00:00
|
|
|
script:
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
# Backup Configuration.h, Configuration_adv.h, and pins_RAMPS_14.h
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
- cp Marlin/Configuration.h Marlin/Configuration.h.backup
|
|
|
|
- cp Marlin/Configuration_adv.h Marlin/Configuration_adv.h.backup
|
2016-02-29 07:23:17 +00:00
|
|
|
- cp Marlin/pins_RAMPS_14.h Marlin/pins_RAMPS_14.h.backup
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Build with the default configurations
|
|
|
|
#
|
|
|
|
- build_marlin
|
|
|
|
#
|
|
|
|
# Test heated bed temperature sensor
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- opt_set TEMP_SENSOR_BED 1
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test 2 extruders on basic RAMPS 1.4
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- opt_set MOTHERBOARD BOARD_RAMPS_14_EEB
|
|
|
|
- opt_set EXTRUDERS 2
|
|
|
|
- opt_set TEMP_SENSOR_1 1
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test 3 extruders on RUMBA (can use any board with >=3 extruders defined)
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- opt_set MOTHERBOARD BOARD_RUMBA
|
|
|
|
- opt_set EXTRUDERS 3
|
|
|
|
- opt_set TEMP_SENSOR_2 1
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test PIDTEMPBED
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable PIDTEMPBED
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test AUTO_BED_LEVELING & DEBUG_LEVELING_FEATURE
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-04-01 04:01:55 +00:00
|
|
|
- opt_enable ENABLE_AUTO_BED_LEVELING DEBUG_LEVELING_FEATURE
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test AUTO_BED_LEVELING & DEBUG_LEVELING_FEATURE with Servos
|
|
|
|
#
|
|
|
|
- opt_enable NUM_SERVOS Z_ENDSTOP_SERVO_NR SERVO_ENDSTOP_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# Test EEPROM_SETTINGS & EEPROM_CHITCHAT
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-03-23 05:32:42 +00:00
|
|
|
- opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
### LCDS ###
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# ULTIMAKERCONTROLLER
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable ULTIMAKERCONTROLLER
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# MAKRPANEL
|
2016-04-01 04:01:55 +00:00
|
|
|
# Needs to use Melzi and Sanguino hardware
|
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
#- restore_configs
|
|
|
|
#- opt_enable MAKRPANEL
|
|
|
|
#- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-05-03 03:01:00 +00:00
|
|
|
# REPRAP_DISCOUNT_SMART_CONTROLLER, SDSUPPORT, and BABYSTEPPING
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-05-03 03:01:00 +00:00
|
|
|
- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT BABYSTEPPING
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
# G3D_PANEL
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-03-23 05:32:42 +00:00
|
|
|
- opt_enable G3D_PANEL SDSUPPORT
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-04-01 04:01:55 +00:00
|
|
|
- opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
# REPRAPWORLD_KEYPAD
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 22:46:15 +00:00
|
|
|
# Cant find configuration details to get it to compile
|
2016-03-22 14:13:38 +00:00
|
|
|
#- restore_configs
|
2016-03-23 05:32:42 +00:00
|
|
|
#- opt_enable ULTRA_LCD REPRAPWORLD_KEYPAD REPRAPWORLD_KEYPAD_MOVE_STEP
|
2016-03-22 14:13:38 +00:00
|
|
|
#- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# RA_CONTROL_PANEL
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable RA_CONTROL_PANEL
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
### I2C PANELS ###
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# LCD_I2C_SAINSMART_YWROBOT
|
2016-04-27 01:32:23 +00:00
|
|
|
# Failing at the moment needs different library
|
2016-03-22 14:13:38 +00:00
|
|
|
#- restore_configs
|
|
|
|
#- opt_enable LCD_I2C_SAINSMART_YWROBOT
|
|
|
|
#- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# LCD_I2C_PANELOLU2
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable LCD_I2C_PANELOLU2
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# LCD_I2C_VIKI
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable LCD_I2C_VIKI
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-19 22:25:51 +00:00
|
|
|
# LCM1602
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable LCM1602
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-20 09:40:26 +00:00
|
|
|
# Enable FILAMENTCHANGEENABLE
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-04-01 04:01:55 +00:00
|
|
|
- opt_enable FILAMENTCHANGEENABLE ULTIMAKERCONTROLLER
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# Enable filament sensor
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-03-30 03:28:23 +00:00
|
|
|
- opt_enable FILAMENT_WIDTH_SENSOR
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
# Enable filament sensor with LCD display
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
- opt_enable ULTIMAKERCONTROLLER FILAMENT_LCD_DISPLAY
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-07-23 15:59:09 +00:00
|
|
|
# Enable COREXY
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable COREXY
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-07-23 15:59:09 +00:00
|
|
|
# Enable COREXZ
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
|
|
|
- opt_enable COREXZ
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-08-10 22:03:31 +00:00
|
|
|
# Enable Z_DUAL_STEPPER_DRIVERS, Z_DUAL_ENDSTOPS
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- restore_configs
|
2016-03-23 05:32:42 +00:00
|
|
|
- opt_enable_adv Z_DUAL_STEPPER_DRIVERS Z_DUAL_ENDSTOPS
|
2016-03-22 14:13:38 +00:00
|
|
|
- pins_set RAMPS_14 X_MAX_PIN -1
|
|
|
|
- opt_set_adv Z2_MAX_PIN 2
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-04-27 01:32:23 +00:00
|
|
|
# Test PRINTCOUNTER
|
|
|
|
#
|
|
|
|
- restore_configs
|
|
|
|
- opt_enable PRINTCOUNTER
|
|
|
|
- build_marlin
|
|
|
|
#
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
######## Example Configurations ##############
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-03-07 18:53:23 +00:00
|
|
|
# Delta Config (generic)
|
2016-04-01 04:01:55 +00:00
|
|
|
- restore_configs
|
2016-03-22 14:13:38 +00:00
|
|
|
- use_example_configs delta/generic
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-11-01 20:49:40 +00:00
|
|
|
# Delta Config (generic) + ABL + ALLEN_KEY
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- use_example_configs delta/generic
|
|
|
|
- opt_disable DISABLE_MIN_ENDSTOPS
|
2016-03-23 05:32:42 +00:00
|
|
|
- opt_enable AUTO_BED_LEVELING_FEATURE Z_PROBE_ALLEN_KEY
|
2016-03-22 14:13:38 +00:00
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-03-07 18:53:23 +00:00
|
|
|
# Delta Config (Mini Kossel)
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- use_example_configs delta/kossel_mini
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# Makibox Config need to check board type for Teensy++ 2.0
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
#- use_example_configs makibox
|
|
|
|
#- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# SCARA Config
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
- use_example_configs SCARA
|
|
|
|
- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
# tvrrug Config need to check board type for sanguino atmega644p
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
#- use_example_configs tvrrug/Round2
|
|
|
|
#- build_marlin
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
#
|
2015-01-03 19:29:04 +00:00
|
|
|
######## Board Types #############
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
|
|
|
# To be added in nightly test branch
|
|
|
|
#
|