From 662d9122f54527aaf65dccc29d8d6b57b9d4fc15 Mon Sep 17 00:00:00 2001 From: Olivier Guyot Date: Tue, 20 Nov 2018 11:52:32 +0100 Subject: [PATCH] Use --ignore-gpu-blacklist to fix Webgl rendering in CircleCI --- rendering/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rendering/test.js b/rendering/test.js index 85d5660493..bcb0ccf496 100755 --- a/rendering/test.js +++ b/rendering/test.js @@ -354,7 +354,7 @@ if (require.main === module) { option('puppeteer-args', { describe: 'Additional args for Puppeteer', type: 'array', - default: process.env.CI ? ['--no-sandbox', '--disable-setuid-sandbox'] : [] + default: process.env.CI ? ['--no-sandbox', '--disable-setuid-sandbox', '--ignore-gpu-blacklist'] : [] }). parse();