1

我正在构建一个使用关键 css 提取插件的 vue/gridsome 应用程序。这一切都在本地运行良好,但我正在努力构建 github 操作。

Extract critical CSS (1 pages)
Error: Failed to launch the browser process!
/github/workspace/node_modules/puppeteer/.local-chromium/linux-722234/chrome-linux/chrome: error while 
loading shared libraries: libX11-xcb.so.1: cannot open shared object file: No such file or directory

我已经搜索了解决方案,似乎缺少 linux / unbuntu 依赖项,所以我尝试将它们添加到我的 yml 工作流程中:https ://medium.com/@cloverinks/how-to-fix-puppetteer-error- ibx11-xcb-so-1-on-ubuntu-152c336368

 steps:
  - uses: actions/checkout@v2
    with:
      submodules: true         
  - name: Req
    run: sudo apt install -y gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
  - name: Build And Deploy
    id: builddeploy
    uses: Azure/static-web-apps-deploy@v0.0.1-preview
    with:

它仍然失败,我错过了一步还是 azure static web 应用程序和 github 操作有限制?

谢谢

4

2 回答 2

1

这是一个已知问题,以下讨论线程建议了解决方法:https ://github.com/Azure/static-web-apps/issues/99

“我们的产品工程团队意识到了这个问题,但不幸的是,没有 ETA 可以永久修复。随着静态 Web 应用程序越来越接近通用可用性 (GA),这些问题中的许多问题都应该得到解决,因为它们目前正在使产品成熟退出公共预览版,并试图为 GA 做好准备。”

造福社区:复制了您与我的同事 Bryan 在Microsoft Q&A 线程上的讨论- 感谢 Michael 的跟进和更新。非常感谢。

于 2020-12-16T19:39:24.037 回答
0

试过这个吗

sudo apt-get install ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils

于 2020-11-28T23:59:39.357 回答