4bc23319a2
Win bots all fail on Cirrus; disable them until the issue is resolved. We still have win coverage with AppVeyour.
33 lines
916 B
YAML
33 lines
916 B
YAML
env:
|
|
DISPLAY: :99.0
|
|
|
|
task:
|
|
matrix:
|
|
- name: node6 (windows)
|
|
allow_failures: true
|
|
windows_container:
|
|
dockerfile: .ci/node6/Dockerfile.windows
|
|
os_version: 2016
|
|
- name: node6 (linux)
|
|
container:
|
|
dockerfile: .ci/node6/Dockerfile.linux
|
|
xvfb_start_background_script: Xvfb :99 -ac -screen 0 1024x768x24
|
|
install_script: npm install --unsafe-perm
|
|
test_script: npm run unit-node6
|
|
|
|
task:
|
|
matrix:
|
|
- name: node7 (windows)
|
|
allow_failures: true
|
|
windows_container:
|
|
dockerfile: .ci/node7/Dockerfile.windows
|
|
os_version: 2016
|
|
- name: node7 (linux)
|
|
container:
|
|
dockerfile: .ci/node7/Dockerfile.linux
|
|
xvfb_start_background_script: Xvfb :99 -ac -screen 0 1024x768x24
|
|
install_script: npm install --unsafe-perm
|
|
lint_script: npm run lint
|
|
coverage_script: npm run coverage
|
|
test_doclint_script: npm run test-doclint
|