forked from Turboconnard/hide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml.template
24 lines (20 loc) · 930 Bytes
/
.travis.yml.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: node_js
node_js:
- "0.10"
# Based on Andy Li Travis CI example
# http://blog.onthewings.net/2013/03/19/automated-unit-testing-for-haxe-project-using-travis-ci/
# Install Haxe before running the test.
before_script:
- sudo apt-get update # run update before installing anything
- sudo apt-get install python-software-properties -y # for the next command
- sudo add-apt-repository ppa:eyecreate/haxe -y # add the ubuntu ppa that contains haxe
- sudo apt-get update # pull info from ppa
- sudo apt-get install haxe -y # install haxe (and neko)
- mkdir ~/haxelib # create a folder for installing haxelib
- haxelib setup ~/haxelib
- haxelib install jQueryExtern # install jQueryExtern
# Run the test!
script:
- cd source
- haxe build.hxml
::plugins::