Skip to content

Instantly share code, notes, and snippets.

@elpete
Last active April 29, 2018 02:06
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elpete/1fd91e99623cfdcfe586b834735b7ba0 to your computer and use it in GitHub Desktop.
Save elpete/1fd91e99623cfdcfe586b834735b7ba0 to your computer and use it in GitHub Desktop.
Multi-engine CI for Travis with CommandBox 3.1.0
language: java
sudo: required
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.CommandBox
env:
matrix:
- ENGINE=lucee@4.5
- ENGINE=lucee@5
- ENGINE=adobe@2016
- ENGINE=adobe@11
- ENGINE=adobe@10
before_install:
- sudo apt-key adv --keyserver keys.gnupg.net --recv 6DA70622
- sudo echo "deb http://downloads.ortussolutions.com/debs/noarch /" | sudo tee -a
/etc/apt/sources.list.d/commandbox.list
install:
- sudo apt-get update && sudo apt-get --assume-yes install commandbox
- box install
before_script:
- box server start cfengine=$ENGINE port=8500
script:
- box testbox run runner="http://127.0.0.1:8500/tests/runner.cfm"
notifications:
email: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment