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.
This commit is contained in:
Martin Pitt 2022-06-13 07:18:31 +02:00 committed by Martin Pitt
parent c09e9ce49d
commit 3a278b6d27

View file

@ -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