File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
16
17
- name : Build (Linux, Ubuntu 22.04 )
17
+ name : Build (Linux, Ubuntu)
18
18
19
19
on :
20
20
- pull_request
21
21
- push
22
22
23
23
jobs :
24
24
build :
25
- name : Build (Linux, Ubuntu 22.04)
26
- runs-on : ubuntu-22.04
25
+ strategy :
26
+ fail-fast : false
27
+ matrix :
28
+ include :
29
+ - runs-on : ubuntu-22.04
30
+ qt : qt5-qmake
31
+ - runs-on : ubuntu-18.04
32
+ qt : qt5-default
33
+
34
+ name : Build (Linux, ${{ matrix.runs-on }})
35
+ runs-on : ${{ matrix.runs-on }}
27
36
steps :
28
37
- name : ' Install build dependencies'
29
38
run : |-
33
42
build-essential \
34
43
libapr1-dev \
35
44
libsvn-dev \
36
- qt5-qmake \
45
+ ${{ matrix.qt }} \
37
46
qtbase5-dev
38
47
39
48
- name : ' Checkout Git branch'
You can’t perform that action at this time.
0 commit comments