Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 702a990

Browse files
committed
Merge branch '1.10'
2 parents b5b55f4 + bbf4dab commit 702a990

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

.github/workflows/tests.yml

+11-13
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,25 @@ on: [push, pull_request]
99
jobs:
1010
linux:
1111
runs-on: ubuntu-latest
12-
container:
13-
image: debian:stable
1412
env:
1513
CONFIG: ${{ matrix.config }}
1614
QT_VERSION: ${{ matrix.qt_version }}
1715
strategy:
1816
fail-fast: false
1917
matrix:
2018
config: [minimal, full, full-debug]
21-
qt_version: ['5.15.*']
19+
qt_version: ['6.9.0']
2220
include:
2321
- config: minimal
24-
qt_version: 6.1.*
22+
qt_version: 5.15.*
23+
- config: full-debug
24+
qt_version: 5.15.*
2525
- config: full-debug
26-
qt_version: 6.5.3
26+
qt_version: 6.1.3
2727
steps:
28-
- name: Install sudo
29-
run: apt update && apt install -qq -y sudo
3028
- uses: actions/checkout@v2
3129
- name: Install Qt
32-
uses: jurplel/install-qt-action@v3
30+
uses: jurplel/install-qt-action@v4
3331
with:
3432
version: ${{ matrix.qt_version }}
3533
modules: ${{ (startsWith(matrix.qt_version, '6.') && 'qt5compat') || '' }}
@@ -51,14 +49,14 @@ jobs:
5149
fail-fast: false
5250
matrix:
5351
config: [minimal, full, full-debug]
54-
qt_version: ['5.15.*']
52+
qt_version: ['6.8.*']
5553
include:
5654
- config: full-debug
57-
qt_version: 6.7.*
55+
qt_version: 5.15.*
5856
steps:
5957
- uses: actions/checkout@v2
6058
- name: Install Qt
61-
uses: jurplel/install-qt-action@v3
59+
uses: jurplel/install-qt-action@v4
6260
with:
6361
version: ${{ matrix.qt_version }}
6462
modules: ${{ matrix.qt_version[0] == '6' && 'qt5compat' || '' }}
@@ -81,11 +79,11 @@ jobs:
8179
strategy:
8280
fail-fast: false
8381
matrix:
84-
qt_version: ['5.15.*', '6.7.*']
82+
qt_version: ['5.15.*', '6.8.*']
8583
steps:
8684
- uses: actions/checkout@v3
8785
- name: Install Qt
88-
uses: jurplel/install-qt-action@v3
86+
uses: jurplel/install-qt-action@v4
8987
with:
9088
version: ${{ matrix.qt_version }}
9189
modules: ${{ (startsWith(matrix.qt_version, '6.') && 'qt5compat') || '' }}

0 commit comments

Comments
 (0)