-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (28 loc) · 789 Bytes
/
.travis.yml
File metadata and controls
35 lines (28 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: java
sudo: required
jdk:
- oraclejdk8
cache:
directories:
- "$HOME/.CommandBox/artifacts/"
- "$HOME/.CommandBox/server/"
env:
matrix:
- ENGINE=adobe@2018
- ENGINE=adobe@2016
- ENGINE=adobe@11
- ENGINE=adobe@10
- ENGINE=lucee@5
- ENGINE=lucee@4.5
before_install:
- curl -fsSl https://downloads.ortussolutions.com/debs/gpg | sudo apt-key add -
- 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