forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
35 lines (27 loc) · 816 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
33
34
35
shallow_clone: true
environment:
matrix:
- nodejs_version: "8"
platform:
- x64
branches:
only:
- master
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: npm install --global --production windows-build-tools
- netsh advfirewall firewall add rule name="SeleniumIn" dir=in action=allow protocol=TCP localport=4444
- netsh advfirewall firewall add rule name="SeleniumOut" dir=out action=allow protocol=TCP localport=4444
before_build:
- node --version && npm --version && yarn --version && python --version
build_script:
- yarn
test_script:
- yarn run test
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/0c92dcdcf861a4c491cc
method: POST
on_build_success: false
on_build_failure: true
on_build_status_changed: true