DEV: Use Chrome in system specs

The version of Chromium we have in our images (120) is relatively
unstable and our system specs break regularly.

This patch makes sure Chrome is used instead for system specs.
This commit is contained in:
Loïc Guitaut 2024-03-27 10:50:29 +01:00 committed by Loïc Guitaut
parent 0b34b4cbe9
commit e911362864

View File

@ -61,9 +61,10 @@ jobs:
- name: Set working directory owner
run: chown root:root .
- name: Remove Chrome
- name: Remove Chromium
continue-on-error: true
run: apt remove -y google-chrome-stable
if: matrix.build_type == 'system'
run: apt remove -y chromium-driver chromium
- uses: actions/checkout@v4
with: