-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
65 lines (58 loc) · 1.34 KB
/
.travis.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
sudo: false
dist: trusty
language: haxe
node_js:
- 12
haxe:
- "3.4.7"
- "4.1.0"
- "development"
matrix:
allow_failures:
- haxe: development
install:
- yes | haxelib install all
script:
- haxe build.hxml
- haxelib dev hxnew .
- haxelib run hxnew -name MyProject1 -pack com.website
- cd MyProject1/
- haxe build.hxml
- cd ../
- haxelib run hxnew -name test.MyProject2 -target neko
- cd test.MyProject2/
- haxe build.hxml
- haxe run.hxml
- cd ../
- haxelib run hxnew -name MyProject3 -target neko,nodejs -lib format
- cd MyProject3/
- haxe install.hxml
- haxe build-neko.hxml
- haxe run-neko.hxml
- haxe build-nodejs.hxml
- haxe run-nodejs.hxml
- cd ../
- haxelib run hxnew -name MyProject4 -pack com.website --lix
- cd MyProject4/
- npm run haxe build.hxml
- cd ../
- haxelib run hxnew -name test.MyProject5 -target neko --lix
- cd test.MyProject5/
- npm run haxe build.hxml
- npm run haxe run.hxml
- cd ../
- haxelib run hxnew -name MyProject6 -target neko,nodejs -lib format --lix
- cd MyProject6/
- npm run haxe build-neko.hxml
- npm run haxe run-neko.hxml
- npm run haxe build-nodejs.hxml
- npm run haxe run-nodejs.hxml
- cd ../
notifications:
email: false
deploy:
- provider: script
haxe: 4.1.0
script: bash ./release_haxelib.sh $HAXELIB_PWD
on:
tags: true