-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec68c69
commit 6fad893
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# xcode 14.0.1 comes with macOS SDK 12.3, ref https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#installed-sdks | ||
# so pre-compile zetasql requires macOS >= 12.3 | ||
- name: Xcode Select Version | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '14.0.1' | ||
|
||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
|
@@ -145,6 +152,10 @@ jobs: | |
run: | | ||
cmake --build deps | ||
- name: verbose minos info | ||
run: | | ||
otool -l deps/usr/lib/libabsl_base.a | grep -A 20 LC_BUILD_VERSION | ||
- name: create archive | ||
if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && github.event.inputs.UPLOAD == true) | ||
run: | | ||
|