File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change 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% \
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 \
You can’t perform that action at this time.
0 commit comments