Skip to content

Commit fc198c2

Browse files
committed
try fix
1 parent cc17ae2 commit fc198c2

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/osx.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
- name: Checkout repository
2222
uses: actions/checkout@v4
2323

24+
- name: Select XCode version
25+
run: |
26+
sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
27+
xcodebuild -version
28+
2429
- name: Create build environment
2530
uses: mamba-org/setup-micromamba@v2
2631
with:

.github/workflows/windows.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232

3333
- name: Configure using cmake
3434
run: |
35-
cmake -G Ninja \
36-
-Bbuild \
35+
cmake -S ./ -B ./build \
3736
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
3837
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX% \
3938
-DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \
@@ -65,8 +64,7 @@ jobs:
6564

6665
- name: Configure using cmake
6766
run: |
68-
cmake -G Ninja \
69-
-Bbuild \
67+
cmake -S ./ -B ./build \
7068
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
7169
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
7270
-DSPARROW_IPC_BUILD_TESTS=ON \

0 commit comments

Comments
 (0)