Merge pull request #184 from jeanthom/ci-macos

Add CI for macOS
This commit is contained in:
Gwenhael Goavec-Merou 2022-02-25 07:02:57 +01:00 committed by GitHub
commit c737347089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

View File

@ -92,6 +92,29 @@ jobs:
tree .
mac-build:
strategy:
fail-fast: false
name: '🚧🐧 macOS latest | build'
runs-on: macos-latest
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v2
- name: '⚙️ Install dependencies'
run: |
brew update
brew install --only-dependencies openFPGALoader
- name: '🚧 Build tarball'
run: |
mkdir build
cd build
cmake ..
cmake --build .
lin-test:
needs: lin-build
strategy: