diff options
author | Stan Hu <stanhu@gmail.com> | 2017-12-21 23:40:56 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2017-12-22 00:23:21 -0800 |
commit | f7ffe27c2e4075789ccd9e798c8a88c9e1d85a4e (patch) | |
tree | f5d0c691704eacd7605ac3770bb5f99c4e10f07c /features | |
parent | 36f4710301926bb853b35d9b14a60e03b42def34 (diff) | |
download | gitlab-ce-f7ffe27c2e4075789ccd9e798c8a88c9e1d85a4e.tar.gz |
Disable /dev/shm in CIsh-disable-dev-shm
According to the Chrome source code (https://chromium.googlesource.com/chromium/src/base/+/master/base_switches.cc#120):
The /dev/shm partition is too small in certain VM environments, causing Chrome
to fail or crash (see http://crbug.com/715363). Use this flag to work-around
this issue (a temporary directory will always be used to create anonymous
shared memory files).
Addresses gitlab-org/gitlab-ee#4252 but doesn't appear to cure it completely.
Diffstat (limited to 'features')
-rw-r--r-- | features/support/capybara.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/features/support/capybara.rb b/features/support/capybara.rb index 5a77b859113..4e2b3c67af5 100644 --- a/features/support/capybara.rb +++ b/features/support/capybara.rb @@ -29,6 +29,9 @@ Capybara.register_driver :chrome do |app| options.add_argument("disable-gpu") end + # Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252 + options.add_argument("disable-dev-shm-usage") if ENV['CI'] || ENV['CI_SERVER'] + Capybara::Selenium::Driver.new( app, browser: :chrome, |