1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +02:00

ci: split jobs config on multiple lines

This commit is contained in:
Sébastien Helleu
2025-05-04 16:10:05 +02:00
parent 5b62cb6451
commit 4116f62dd8
+16 -4
View File
@@ -299,8 +299,14 @@ jobs:
os:
- ubuntu-24.04
config:
- { name: "gcc", cc: "gcc", cxx: "g++", buildargs: "" }
- { name: "clang", cc: "clang", cxx: "clang++", buildargs: "" }
- name: "gcc"
cc: "gcc"
cxx: "g++"
buildargs: ""
- name: "clang"
cc: "clang"
cxx: "clang++"
buildargs: ""
name: "rockylinux-9 (${{ matrix.config.name }})"
runs-on: ${{ matrix.os }}
@@ -343,8 +349,14 @@ jobs:
os:
- ubuntu-24.04
config:
# - { name: "gcc", cc: "gcc", cxx: "g++", buildargs: "" }
- { name: "clang", cc: "clang", cxx: "clang++", buildargs: "" }
# - name: "gcc"
# cc: "gcc"
# cxx: "g++"
# buildargs: ""
- name: "clang"
cc: "clang"
cxx: "clang++"
buildargs: ""
name: "freebsd-14 (${{ matrix.config.name }})"
runs-on: ${{ matrix.os }}