Skip to content

Commit 7bca11f

Browse files
authored
CI-unixish.yml: do not run with g++ on macos-* as it is just an alias for clang++ (#483)
1 parent fead0b2 commit 7bca11f

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/CI-unixish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ jobs:
77

88
strategy:
99
matrix:
10-
compiler: [clang++, g++]
1110
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++
1217
fail-fast: false
1318

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

0 commit comments

Comments
 (0)