You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ci.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ configurations for common CI providers.
11
11
*[Azure Pipelines](#azure-pipelines)
12
12
*[Travis CI](#travis-ci)
13
13
*[CircleCI](#circleci)
14
-
*[AppVeyor](#appveyor)
15
14
*[Bitbucket Pipelines](#bitbucket-pipelines)
16
15
*[GitLab CI](#gitlab-ci)
17
16
-[Caching browsers](#caching-browsers)
@@ -94,7 +93,7 @@ steps:
94
93
95
94
### Travis CI
96
95
97
-
We run our tests on Travis CI over a Linux agent (Ubuntu 18.04). Use our [Travis configuration](/.travis.yml) to see list of additional dependencies to be installed.
96
+
We run our tests on Travis CI over a Linux agent (Ubuntu 18.04).
# gstreamer and plugins to support video playback in WebKit.
132
+
- gstreamer1.0-gl
133
+
- gstreamer1.0-plugins-base
134
+
- gstreamer1.0-plugins-good
135
+
- gstreamer1.0-plugins-bad
136
+
# This is required to run chromium
137
+
- libgbm1
138
+
# this is needed for running headful tests
135
139
- xvfb
136
140
137
141
# allow headful tests
@@ -145,7 +149,7 @@ before_install:
145
149
146
150
### CircleCI
147
151
148
-
We run our tests on CircleCI, with our [pre-built Docker image](docker/README.md). Use our [CircleCI configuration](/.circleci/config.yml) to create your own. Running Playwright smoothly on CircleCI requires the following steps:
152
+
We run our tests on CircleCI, with our [pre-built Docker image](docker/README.md). Running Playwright smoothly on CircleCI requires the following steps:
149
153
150
154
1. Use the pre-built [Docker image](docker/README.md) in your config like so:
151
155
@@ -166,10 +170,6 @@ We run our tests on CircleCI, with our [pre-built Docker image](docker/README.md
166
170
167
171
This is likely caused by Jest autodetecting the number of processes on the entire machine (`36`) rather than the number allowed to your container (`2`). To fix this, set `jest --maxWorkers=2` in your test command.
168
172
169
-
### AppVeyor
170
-
171
-
We run our tests on Windows agents in AppVeyor. Use our [AppVeyor configuration](/.appveyor.yml) to create your own.
172
-
173
173
### Bitbucket Pipelines
174
174
175
175
Bitbucket Pipelines can use public [Docker images as build environments](https://confluence.atlassian.com/bitbucket/use-docker-images-as-build-environments-792298897.html). To run Playwright tests on Bitbucket, use our public Docker image ([see Dockerfile](docker/README.md)).
0 commit comments