diff options
author | Florian Bruhin <me@the-compiler.org> | 2023-08-15 19:31:36 +0200 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2023-08-15 19:31:36 +0200 |
commit | a19634474246739027f826968ea34e720c0ec987 (patch) | |
tree | 260b801c60ab6d192ec490a602727ba72240d45d /.github | |
parent | b55a9f794bee9e8296e81c02e8d16de9dc6a7698 (diff) | |
download | qutebrowser-a19634474246739027f826968ea34e720c0ec987.tar.gz qutebrowser-a19634474246739027f826968ea34e720c0ec987.zip |
ci: Use proper image for Qt 6 bleeding tests
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bleeding.yml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml index 93966b9e7..8f8cddc1e 100644 --- a/.github/workflows/bleeding.yml +++ b/.github/workflows/bleeding.yml @@ -12,23 +12,25 @@ jobs: if: "github.repository == 'qutebrowser/qutebrowser'" runs-on: ubuntu-20.04 timeout-minutes: 45 + strategy: + fail-fast: false + matrix: + include: + - testenv: bleeding + image: "archlinux-webengine-unstable-qt6" + - testenv: bleeding-qt5 + image: "archlinux-webengine-unstable" container: - image: "qutebrowser/ci:archlinux-webengine-unstable" + image: "qutebrowser/ci:${{ matrix.image }}" env: FORCE_COLOR: "1" PY_COLORS: "1" - DOCKER: "archlinux-webengine-unstable" + DOCKER: "${{ matrix.image }}" CI: true volumes: # Hardcoded because we can't use ${{ runner.temp }} here apparently. - /home/runner/work/_temp/:/home/runner/work/_temp/ options: --privileged --tty - strategy: - fail-fast: false - matrix: - include: - - testenv: bleeding - - testenv: bleeding-qt5 steps: - uses: actions/checkout@v3 with: |