We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SDKROOT
1 parent 595fdcb commit 0d36a60Copy full SHA for 0d36a60
1 file changed
.github/workflows/nightly.yml
@@ -43,6 +43,9 @@ jobs:
43
if: matrix.os == 'windows-latest'
44
with:
45
arch: x64
46
+ - name: Configure macOS SDKROOT
47
+ if: runner.os == 'macOS'
48
+ run: echo "SDKROOT=$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV
49
- name: Export GitHub Actions cache variables
50
uses: actions/github-script@v8
51
@@ -53,7 +56,7 @@ jobs:
53
56
run: |
54
57
mkdir -p build
55
58
mkdir -p artifacts/${{ matrix.platform }}
- cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DTILEDB_SERIALIZATION=ON -DTILEDB_S3=ON -DTILEDB_VCPKG=ON -DCOMPILER_SUPPORTS_AVX2=OFF -DTILEDB_CMAKE_IDE=ON
59
+ cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DTILEDB_TESTS=OFF -DCOMPILER_SUPPORTS_AVX2=OFF
60
cmake --build build -j --target tiledb
61
cmake --install build --prefix artifacts/${{ matrix.platform }}
62
0 commit comments