Skip to content
Snippets Groups Projects
.travis.yml 11.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • notifications:
      email: false
      #
    
      # Fetch the tag information for the current branch
    
    João Brázio's avatar
    João Brázio committed
      #
      # Publish the buildroot script folder
      - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
      - ln -s ${TRAVIS_BUILD_DIR}/buildroot/bin/ ~/bin
      #
      # Start fb X server
      - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
      - sleep 3
      - export DISPLAY=:1.0
    
      # Install arduino 1.6.10
      - wget http://downloads-02.arduino.cc/arduino-1.6.10-linux64.tar.xz
      - tar xf arduino-1.6.10-linux64.tar.xz
      - sudo mv arduino-1.6.10 /usr/local/share/arduino
    
    João Brázio's avatar
    João Brázio committed
      - ln -s /usr/local/share/arduino/arduino ${TRAVIS_BUILD_DIR}/buildroot/bin/arduino
      #
      # Install: LiquidCrystal_I2C library
    
      - git clone https://github.com/kiyoshigawa/LiquidCrystal_I2C.git
      - mv LiquidCrystal_I2C/LiquidCrystal_I2C /usr/local/share/arduino/libraries/LiquidCrystal_I2C
    
    João Brázio's avatar
    João Brázio committed
      #
      # Install: LiquidTWI2 library
    
      - git clone https://github.com/lincomatic/LiquidTWI2.git
    
    João Brázio's avatar
    João Brázio committed
      - sudo mv LiquidTWI2 /usr/local/share/arduino/libraries/LiquidTWI2
      #
      # Install: Monochrome Graphics Library for LCDs and OLEDs
    
      - git clone https://github.com/olikraus/U8glib_Arduino.git
      - sudo mv U8glib_Arduino /usr/local/share/arduino/libraries/U8glib
    
    João Brázio's avatar
    João Brázio committed
      #
      # Install: L6470 Stepper Motor Driver library
    
      # - git clone https://github.com/ameyer/Arduino-L6470.git
      # - sudo mv Arduino-L6470/L6470 /usr/local/share/arduino/libraries/L6470
    
    João Brázio's avatar
    João Brázio committed
      #
      # Install: TMC26X Stepper Motor Controller library
    
      # - git clone https://github.com/trinamic/TMC26XStepper.git
      # - sudo mv TMC26XStepper /usr/local/share/arduino/libraries/TMC26XStepper
      #
      # Install: TMC2130 Stepper Motor Controller library
    
      - git clone https://github.com/teemuatlut/TMC2130Stepper.git
      - sudo mv TMC2130Stepper /usr/local/share/arduino/libraries/TMC2130Stepper
    
    João Brázio's avatar
    João Brázio committed
      #
      # Change current working directory to the build dir
      - cd ${TRAVIS_BUILD_DIR}
    
      # Generate custom version include
      - generate_version_header_for_marlin ${TRAVIS_BUILD_DIR}/Marlin
      - cat ${TRAVIS_BUILD_DIR}/Marlin/_Version.h
      #
    
      # Backup Configuration.h, Configuration_adv.h, and pins_RAMPS.h
    
      - cp Marlin/Configuration.h Marlin/Configuration.h.backup
      - cp Marlin/Configuration_adv.h Marlin/Configuration_adv.h.backup
    
      - cp Marlin/pins_RAMPS.h Marlin/pins_RAMPS.h.backup
    
      #
      # Build with the default configurations
      #
      - build_marlin
      #
      # Test heated bed temperature sensor
      #
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - opt_set TEMP_SENSOR_BED 1
      - build_marlin
    
      #
      # Test 2 extruders on basic RAMPS 1.4
      #
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - opt_set MOTHERBOARD BOARD_RAMPS_14_EEB
      - opt_set EXTRUDERS 2
      - opt_set TEMP_SENSOR_1 1
      - build_marlin
    
      # Test 5 extruders on AZTEEG_X3_PRO (can use any board with >=5 extruders defined)
    
      # Include a test for LIN_ADVANCE here also
    
      - opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
      - opt_set EXTRUDERS 5
      - opt_set TEMP_SENSOR_1 1
      - opt_set TEMP_SENSOR_2 5
      - opt_set TEMP_SENSOR_3 20
      - opt_set TEMP_SENSOR_4 999
      - opt_set TEMP_SENSOR_BED 1
    
      - opt_enable_adv LIN_ADVANCE
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_set TEMP_SENSOR_BED 1
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - opt_enable PIDTEMPBED
      - build_marlin
    
      # Test MAX6675
      #
      - restore_configs
      - opt_set TEMP_SENSOR_0 -2
      - build_marlin
      #
    
      # Test a "Fix Mounted" Probe along with Safe Homing
    
      - opt_enable FIX_MOUNTED_PROBE Z_SAFE_HOMING
    
      # ...with AUTO_BED_LEVELING_LINEAR, Z_MIN_PROBE_REPEATABILITY_TEST, and DEBUG_LEVELING_FEATURE
    
      - opt_enable AUTO_BED_LEVELING_LINEAR Z_MIN_PROBE_REPEATABILITY_TEST DEBUG_LEVELING_FEATURE
    
      - opt_set ABL_GRID_POINTS_X 16
      - opt_set ABL_GRID_POINTS_Y 16
    
      # Test a simple build of AUTO_BED_LEVELING_UBL
      #
      - restore_configs
    
      - opt_enable AUTO_BED_LEVELING_UBL UBL_G26_MESH_EDITING ENABLE_LEVELING_FADE_HEIGHT FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
    
      - build_marlin
      #
    
      # Test a Sled Z Probe
    
      # ...with AUTO_BED_LEVELING_LINEAR, DEBUG_LEVELING_FEATURE, EEPROM_SETTINGS, and EEPROM_CHITCHAT
    
      - restore_configs
      - opt_enable Z_PROBE_SLED AUTO_BED_LEVELING_LINEAR DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
    
      - build_marlin
      #
      # Test a Servo Probe
    
      # ...with AUTO_BED_LEVELING_3POINT, DEBUG_LEVELING_FEATURE, EEPROM_SETTINGS, EEPROM_CHITCHAT, EXTENDED_CAPABILITIES_REPORT, and AUTO_REPORT_TEMPERATURES
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable NUM_SERVOS Z_ENDSTOP_SERVO_NR Z_SERVO_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
    
      - opt_enable AUTO_BED_LEVELING_3POINT DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
    
      - opt_enable_adv EXTENDED_CAPABILITIES_REPORT AUTO_REPORT_TEMPERATURES AUTOTEMP
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      # Test MESH_BED_LEVELING feature, with LCD
      #
      - restore_configs
    
      - opt_enable MESH_BED_LEVELING MESH_G28_REST_ORIGIN LCD_BED_LEVELING ULTIMAKERCONTROLLER
      - build_marlin
      #
    
      # Test PROBE_MANUALLY feature, with LCD support
    
      #
      - restore_configs
    
      - opt_enable PROBE_MANUALLY AUTO_BED_LEVELING_BILINEAR LCD_BED_LEVELING ULTIMAKERCONTROLLER
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
      #
    
      # Test EEPROM_SETTINGS, EEPROM_CHITCHAT, M100_FREE_MEMORY_WATCHER,
      #   INCH_MODE_SUPPORT, TEMPERATURE_UNITS_SUPPORT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable EEPROM_SETTINGS EEPROM_CHITCHAT M100_FREE_MEMORY_WATCHER M100_FREE_MEMORY_DUMPER M100_FREE_MEMORY_CORRUPTOR INCH_MODE_SUPPORT TEMPERATURE_UNITS_SUPPORT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # Mixing Extruder with 5 steppers
    
      - opt_set MOTHERBOARD BOARD_AZTEEG_X3_PRO
    
      - opt_enable MIXING_EXTRUDER
    
      - opt_set MIXING_STEPPERS 5
    
      # Test DUAL_X_CARRIAGE
      #
      - restore_configs
    
      - opt_set MOTHERBOARD BOARD_RUMBA
    
      - opt_set EXTRUDERS 2
      - opt_set TEMP_SENSOR_1 1
      - opt_enable USE_XMAX_PLUG
      - opt_enable_adv DUAL_X_CARRIAGE
      - build_marlin
      #
    
      # Test SPEAKER with BOARD_BQ_ZUM_MEGA_3D and BQ_LCD_SMART_CONTROLLER
      #
      - restore_configs
      - opt_set MOTHERBOARD BOARD_BQ_ZUM_MEGA_3D
      - opt_set LCD_FEEDBACK_FREQUENCY_DURATION_MS 10
      - opt_set LCD_FEEDBACK_FREQUENCY_HZ 100
      - opt_enable BQ_LCD_SMART_CONTROLLER SPEAKER
    
      #
      # Test SWITCHING_EXTRUDER
      #
      - restore_configs
      - opt_set MOTHERBOARD BOARD_RUMBA
      - opt_set EXTRUDERS 2
      - opt_enable NUM_SERVOS
      - opt_set NUM_SERVOS 1
      - opt_set TEMP_SENSOR_1 1
      - opt_enable SWITCHING_EXTRUDER ULTIMAKERCONTROLLER
    
      - build_marlin
      #
    
      # Test MINIRAMBO for PWM_MOTOR_CURRENT
      #
      - restore_configs
      - opt_set MOTHERBOARD BOARD_MINIRAMBO
      - build_marlin
      #
    
      # Test FILAMENT_CHANGE_FEATURE, PARK_HEAD_ON_PAUSE, and LCD_INFO_MENU
    
      - opt_enable ULTIMAKERCONTROLLER
    
      - opt_enable_adv FILAMENT_CHANGE_FEATURE PARK_HEAD_ON_PAUSE LCD_INFO_MENU
    
      - build_marlin
      #
      # Enable filament sensor
      #
      - restore_configs
      - opt_enable FILAMENT_WIDTH_SENSOR
      - build_marlin
      #
      # Enable filament sensor with LCD display
      #
      - opt_enable ULTIMAKERCONTROLLER FILAMENT_LCD_DISPLAY
      - build_marlin
      #
    
      # Enable BEZIER_CURVE_SUPPORT, EXPERIMENTAL_I2CBUS, and I2C_SLAVE_ADDRESS
    
      - opt_enable_adv BEZIER_CURVE_SUPPORT EXPERIMENTAL_I2CBUS
    
      - opt_set_adv I2C_SLAVE_ADDRESS 63
    
      - build_marlin
      #
      # Enable COREXY
      #
      - restore_configs
      - opt_enable COREXY
      - build_marlin
      #
    
      - build_marlin
      #
      # Enable Z_DUAL_STEPPER_DRIVERS, Z_DUAL_ENDSTOPS
      #
      - restore_configs
      - opt_enable_adv Z_DUAL_STEPPER_DRIVERS Z_DUAL_ENDSTOPS
    
      - pins_set RAMPS X_MAX_PIN -1
    
      - opt_set_adv Z2_MAX_PIN 2
      - build_marlin
      #
      # Test PRINTCOUNTER
      #
      - restore_configs
      - opt_enable PRINTCOUNTER
      - build_marlin
      #
    
      # Test NOZZLE_PARK_FEATURE
    
      - opt_enable NOZZLE_PARK_FEATURE
      - build_marlin
      #
      # Test NOZZLE_CLEAN_FEATURE
      #
      - restore_configs
    
      #
      ######## STANDARD LCD/PANELS ##############
    
      # ULTRA_LCD
      #
      - restore_configs
      - opt_enable ULTRA_LCD
      - build_marlin
      #
      # DOGLCD
      #
      - restore_configs
      - opt_enable DOGLCD
      - build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
      - opt_enable ULTIMAKERCONTROLLER
      - build_marlin
    
      # Needs to use Melzi and Sanguino hardware
      #
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- restore_configs
      #- opt_enable MAKRPANEL
      #- build_marlin
    
      # REPRAP_DISCOUNT_SMART_CONTROLLER, SDSUPPORT, and BABYSTEPPING
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER SDSUPPORT BABYSTEPPING
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      # G3D_PANEL
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable G3D_PANEL SDSUPPORT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # Add SDCARD_SORT_ALPHA, test G3D_PANEL again
      #
      - opt_enable_adv SDCARD_SORT_ALPHA
      - opt_set_adv SDSORT_GCODE true
      - opt_set_adv SDSORT_USES_RAM true
      - opt_set_adv SDSORT_USES_STACK true
      - opt_set_adv SDSORT_CACHE_NAMES true
      - build_marlin
      #
    
      # REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER SDSUPPORT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      # REPRAPWORLD_KEYPAD
    
      # Cant find configuration details to get it to compile
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- restore_configs
    
      #- opt_enable ULTRA_LCD REPRAPWORLD_KEYPAD REPRAPWORLD_KEYPAD_MOVE_STEP
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
    
      - opt_enable RA_CONTROL_PANEL PINS_DEBUGGING
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      ######## I2C LCD/PANELS ##############
      #
      # !!!ATTENTION!!!
      # Most I2C configurations are failing at the moment because they require
      # a different Liquid Crystal library "LiquidTWI2".
    
      # LCD_I2C_SAINSMART_YWROBOT
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- restore_configs
      #- opt_enable LCD_I2C_SAINSMART_YWROBOT
      #- build_marlin
    
      #- restore_configs
      #- opt_enable LCD_I2C_PANELOLU2
      #- build_marlin
    
      #- restore_configs
      #- opt_enable LCD_I2C_VIKI
      #- build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - restore_configs
      - opt_enable LCM1602
      - build_marlin
    
      ######## Example Configurations ##############
    
    João Brázio's avatar
    João Brázio committed
      # BQ Hephestos 2
      - restore_configs
      - use_example_configs Hephestos_2
      - build_marlin
      #
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - use_example_configs delta/generic
    
      - opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_CALIBRATION_MENU
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # Delta Config (generic) + ABL + ALLEN_KEY
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - use_example_configs delta/generic
      - opt_disable DISABLE_MIN_ENDSTOPS
    
      - opt_enable AUTO_BED_LEVELING_BILINEAR Z_PROBE_ALLEN_KEY
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # Delta Config (FLSUN AC because it's complex)
    
      - use_example_configs delta/FLSUN/auto_calibrate
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # Makibox Config  need to check board type for Teensy++ 2.0
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- use_example_configs makibox
      #- build_marlin
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - use_example_configs SCARA
    
      - opt_enable AUTO_BED_LEVELING_BILINEAR FIX_MOUNTED_PROBE USE_ZMIN_PLUG EEPROM_SETTINGS EEPROM_CHITCHAT ULTIMAKERCONTROLLER
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      - build_marlin
    
      # TMC2130 Config
      #
      - restore_configs
    
      - opt_enable_adv HAVE_TMC2130 X_IS_TMC2130 Y_IS_TMC2130 Z_IS_TMC2130
      - build_marlin
    
      - opt_enable_adv AUTOMATIC_CURRENT_CONTROL STEALTHCHOP HYBRID_THRESHOLD SENSORLESS_HOMING
    
      - build_marlin
      #
    
      # tvrrug Config need to check board type for sanguino atmega644p
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      #- use_example_configs tvrrug/Round2
      #- build_marlin
    
      ######## Board Types #############
    
      #
      # To be added in nightly test branch
      #