forked from apache/cordova-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (29 loc) · 803 Bytes
/
appveyor.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
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# getting cordova tools dependencies from github
# to make sure we're using their latest versions
install:
- cd ..
- git clone https://github.com/apache/cordova-js --depth 10
- cd cordova-js
- npm install
- npm link
- cd ..
- git clone https://github.com/apache/cordova-lib --depth 10
- cd cordova-lib\cordova-lib
- npm link cordova-js
- npm install
- npm link
- (cd ..\cordova-common && npm install && npm link)
- npm link cordova-common
- (cd ..\cordova-fetch && npm link cordova-common && npm install && npm link)
- npm link cordova-fetch
- cd ..\..\cordova-cli
- npm link cordova-lib
- npm link cordova-common
- npm install
build: off
test_script:
- node --version
- npm --version
- npm test