File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,35 @@ jobs:
204204 cd tests
205205 bash ./run.sh ${{ matrix.compiler }}
206206
207+ tests-macos14-gpp :
208+ strategy :
209+ matrix :
210+ os : [macos-14]
211+ compiler : [g++]
212+ version : [12, 13, 14]
213+ name : Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
214+ runs-on : ${{ matrix.os }}
215+ steps :
216+ - uses : actions/checkout@v3
217+ - name : Run tests
218+ run : |
219+ cd tests
220+ bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
221+
222+ tests-macos14-clang :
223+ strategy :
224+ matrix :
225+ os : [macos-14]
226+ compiler : [clang++]
227+ name : Use ${{ matrix.compiler }} on ${{ matrix.os }}
228+ runs-on : ${{ matrix.os }}
229+ steps :
230+ - uses : actions/checkout@v3
231+ - name : Run tests
232+ run : |
233+ cd tests
234+ bash ./run.sh ${{ matrix.compiler }}
235+
207236 tests-windows-2019 :
208237 strategy :
209238 matrix :
You can’t perform that action at this time.
0 commit comments