Skip to content

Commit

Permalink
Introduce GHA build for Mac OS
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Apr 5, 2024
1 parent a29cb75 commit 3b3e83a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Mac OS build check

on:
pull_request:
branches: [ "master" ]

permissions:
issues: write
pull-requests: write
checks: write

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Install packages
- run: |
brew install git g++ cmake libsqlite3-dev gcovr libjpeg-dev
- 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

0 comments on commit 3b3e83a

Please sign in to comment.