mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-11 01:13:16 +03:00
e131fe0cee
The new Chromium (#771) requires [`libgbm1`](https://packages.debian.org/sid/libgbm1) to be installed. Install it manually on the bots, and add it to troubleshooting.md.
38 lines
770 B
YAML
38 lines
770 B
YAML
language: node_js
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# These are required to run webkit
|
|
- libwoff1
|
|
- libopus0
|
|
- libwebp6
|
|
- libwebpdemux2
|
|
- libenchant1c2a
|
|
- libgudev-1.0-0
|
|
- libsecret-1-0
|
|
- libhyphen0
|
|
- libgdk-pixbuf2.0-0
|
|
- libegl1
|
|
- libgles2
|
|
- libevent-2.1-6
|
|
- libnotify4
|
|
- libxslt1.1
|
|
# This is required to run chromium
|
|
- libgbm1
|
|
# this is needed for running headful tests
|
|
- xvfb
|
|
notifications:
|
|
email: false
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
script:
|
|
- "npm run lint"
|
|
- "xvfb-run --auto-servernum npm run ctest"
|
|
- "xvfb-run --auto-servernum npm run ftest"
|
|
- "xvfb-run --auto-servernum npm run wtest"
|
|
jobs:
|
|
include:
|
|
- node_js: "12"
|