forked from wikiti/extension-networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
29 lines (26 loc) · 869 Bytes
/
circle.yml
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
machine:
environment:
AUDIODEV: null
dependencies:
cache_directories:
- test/build
pre:
- mkdir -p test/build examples/basic-example/bin
- sudo add-apt-repository ppa:haxe/releases -y
- sudo apt-get update
- sudo apt-get install haxe -y --force-yes
- sudo apt-get install g++-multilib gcc-multilib
- sudo apt-get install mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install mcover
- haxelib install hamcrest
- haxelib install openfl
- haxelib install lime
- haxelib dev extension-networking .
- sudo ln -s /usr/lib/libneko.so.2 /usr/lib/libneko.so
test:
override:
- haxelib run munit test
- haxelib run openfl build examples/basic-example/project.xml neko
- haxelib run openfl build examples/tic-tac-toe/project.xml neko