-
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
ben
committed
Apr 5, 2024
1 parent
a29cb75
commit 9fdc8f7
Showing
1 changed file
with
31 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,31 @@ | ||
name: Compile on latest macOS (Homebrew) | ||
|
||
on: | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
checks: write | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install git gcc cmake sqlite3 gcovr jpeg | ||
- name: Clone aquamarine repo | ||
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git | ||
|
||
- name: Build artifacts with Cmake | ||
run: | | ||
cd aquamarine && | ||
./build.sh |