在Bitbucket管道中运行Cypress找不到Chrome

时间:2019-04-29 10:22:23

标签: continuous-integration cypress bitbucket-pipelines

我不知道为什么它会尝试运行Chrome而不是基于Electron的浏览器。这里是珀西的罪魁祸首吗?

+ yarn cy:ci --parallel --ci-build-id $BITBUCKET_BUILD_NUMBER
yarn run v1.13.0
$ cd cypress && yarn ci --parallel --ci-build-id 119
$ percy exec -- cypress run --record --parallel --ci-build-id 119
[percy] created build #5: https://percy.io/DeepVision/doveze-cz/builds/1794467
Error: Failed to launch chrome!
/opt/atlassian/pipelines/agent/build/cypress/node_modules/puppeteer/.local-chromium/linux-650583/chrome-linux/chrome: error while loading shared libraries: libX11-xcb.so.1: cannot open shared object file: No such file or directory
TROUBLESHOOTING: https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md
    at onClose (/opt/atlassian/pipelines/agent/build/cypress/node_modules/puppeteer/lib/Launcher.js:342:14)
    at Interface.helper.addEventListener (/opt/atlassian/pipelines/agent/build/cypress/node_modules/puppeteer/lib/Launcher.js:331:50)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

要点的更多信息和配置:https://gist.github.com/FredyC/d5b82b485e65245102dd24f6df787f5f

1 个答案:

答案 0 :(得分:1)

在Percy支持的帮助下,通过使用图像cypress/browsers:chrome67-ff57解决了此问题。

相关问题