36b87000e4
Remove Cirrus Win targets until there's a good resolution. Postmortem: - CirrusCI uses [Windows Server Containers](https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/#windows-container-types) to run windows builds. - Windows Server Containers don't include all the libraries that are required to run general application. See [msdn discussion](https://social.msdn.microsoft.com/Forums/en-US/a50e7dd7-c73f-45e0-89b4-92ba3ad2bcda/ieframedll-and-shdocvwdll-are-missing-from-windowsservercore-image?forum=windowscontainers). - A recent [chromium commit](https://crrev.com/560677) added win dependencies missing in Windows Server Containers. We'll be able to bring back Win builds on Cirrus once the full-fledged Win containers are released (announced [recently](https://channel9.msdn.com/Events/Build/2018/BRK2149).
23 lines
608 B
YAML
23 lines
608 B
YAML
env:
|
|
DISPLAY: :99.0
|
|
|
|
task:
|
|
matrix:
|
|
- 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 (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
|