Skip to content

Commit d7eaeb7

Browse files
committed
CI-unixish.yml: do not run with g++ on macos-* as it is just an alias for clang++
1 parent af0682a commit d7eaeb7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/CI-unixish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ jobs:
77

88
strategy:
99
matrix:
10-
# TODO: do not run g++ on macos-* as it is just an alias for clang++
11-
compiler: [clang++, g++]
1210
os: [ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, macos-15]
11+
compiler: [clang++]
12+
include:
13+
- os: ubuntu-22.04
14+
compiler: g++
15+
- os: ubuntu-24.04
16+
compiler: g++
1317
fail-fast: false
1418

1519
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)