-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
29 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Build | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build-macos: | ||
name: Build macOS | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- name: Install GLib | ||
run: brew install glib | ||
- name: Install GLib (x86_64) | ||
run: | | ||
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | ||
/usr/local/bin/brew install glib || true # this can error on linking | ||
- name: Build | ||
run: xcodebuild archive -scheme vd_agent -archivePath vd_agent.xcarchive | ||
- name: Archive | ||
run: tar -acf vd_agent.xcarchive.tgz vd_agent.xcarchive | ||
- name: Upload | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: vd_agent-macOS | ||
path: vd_agent.xcarchive.tgz |