From 3a278b6d27162ec79c8eb1d6b4c7626cc49e5c60 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 13 Jun 2022 07:18:31 +0200 Subject: [PATCH] cirrus: Run tests with Firefox The GKE container only has the default 64 MiB /dev/shm, which is not enough for Chromium. It cannot be remounted from inside the container, and chromium's `--disable-dev-shm-usage` option does not actually work, so run the tests with Firefox instead. --- .cirrus.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 118fb21..1775e60 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -18,4 +18,5 @@ test_task: # test PO template generation pot_build_script: make po/starter-kit.pot - check_script: TEST_JOBS=$(nproc) TEST_OS=$TEST_OS make check + # chromium has too little /dev/shm, and we can't make that bigger + check_script: TEST_BROWSER=firefox TEST_JOBS=$(nproc) TEST_OS=$TEST_OS make check