forked from MichaelMULLER/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (33 loc) · 1.03 KB
/
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
36
37
38
39
40
41
shallow_clone: true
environment:
matrix:
- nodejs_version: "10"
platform:
- x64
branches:
only:
- master
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install [email protected] -g
- 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
- cmd: set THEIA_SKIP_NPM_PREPARE=1 && yarn install
- npx rimraf node_modules/@theia/electron/download
- npx electron-replace-ffmpeg
- npx electron-codecs-test
before_build:
- node --version && npm --version && yarn --version && python --version
build_script:
- yarn prepare
test_script:
- appveyor-retry yarn test:theia
- appveyor-retry yarn test:electron
- appveyor-retry yarn test:browser
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