Use Xcode for macOS builds

This commit is contained in:
Alexander Batalov 2023-04-28 00:13:29 +03:00
parent fcf8a87603
commit 5b485e9632
1 changed files with 8 additions and 3 deletions

View File

@ -213,23 +213,28 @@ jobs:
uses: actions/cache@v3
with:
path: build
key: macos-cmake-v3
key: macos-cmake-v4
- name: Configure
run: |
cmake \
-B build \
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
-G Xcode \
# EOL
- name: Build
run: |
cmake \
--build build \
--config RelWithDebInfo \
-j $(sysctl -n hw.physicalcpu) \
--target package \
# EOL
- name: Pack
run: |
cd build
cpack -C RelWithDebInfo
- name: Upload
uses: actions/upload-artifact@v3
with: