Skip to content

Commit 86219e4

Browse files
committed
temp
1 parent b9c02d2 commit 86219e4

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,32 @@ on:
33
workflow_call:
44

55
jobs:
6-
test-windows:
7-
runs-on: windows-2025
8-
steps:
9-
- name: Checkout code
10-
uses: actions/checkout@v4
11-
with:
12-
submodules: recursive
6+
# test-windows:
7+
# runs-on: windows-2025
8+
# steps:
9+
# - name: Checkout code
10+
# uses: actions/checkout@v4
11+
# with:
12+
# submodules: recursive
1313

14-
- name: Configure and build
15-
uses: ./.github/actions/common-windows
16-
with:
17-
config-preset: Debug
18-
build-preset: Tests
14+
# - name: Configure and build
15+
# uses: ./.github/actions/common-windows
16+
# with:
17+
# config-preset: Debug
18+
# build-preset: Tests
1919

20-
- name: Run Tests
21-
run: |
22-
cd ./build/
23-
ctest
20+
# - name: Run Tests
21+
# run: |
22+
# cd ./build/
23+
# ctest
2424

2525
test-macos:
2626
runs-on: macos-15
27+
28+
strategy:
29+
matrix:
30+
triplet: [arm64-osx, x64-osx]
31+
2732
steps:
2833
- name: Checkout code
2934
uses: actions/checkout@v4
@@ -35,7 +40,7 @@ jobs:
3540
with:
3641
config-preset: Debug
3742
build-preset: Tests
38-
vcpkg-triplet: arm64-osx
43+
vcpkg-triplet: ${{ matrix.triplet }}
3944

4045
- name: Run Tests
4146
run: |

0 commit comments

Comments
 (0)