Skip to content

Commit 43e3822

Browse files
committed
turn off long double on apple silicon
1 parent 5e0f708 commit 43e3822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, macos-latest, windows-latest]
18+
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
1919

2020
steps:
2121
- name: Setup MSVC on Windows
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
mkdir build
4242
cd build
43-
cmake .. -DDOWNLOAD_GTEST=ON
43+
cmake .. -DDOWNLOAD_GTEST=ON -DFFTW_USE_LONG_DOUBLE=${{ matrix.os == 'macos-latest' && 'OFF' || 'ON' }}
4444
cmake --build test
4545
4646
- name: Run tests

0 commit comments

Comments
 (0)