mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2025-10-30 03:44:26 +00:00
Added macOs build to workflow
This commit is contained in:
parent
62bf7e7387
commit
2fbf44d8a8
42
.github/workflows/build_osx.yml
vendored
Normal file
42
.github/workflows/build_osx.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
name: osx_x64
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: "*"
|
||||
|
||||
pull_request:
|
||||
branches: "*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: osx_build
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install Packages
|
||||
run: brew install sdl2 ninja googletest
|
||||
|
||||
- name: Configure Build
|
||||
run: cmake -G "Ninja Multi-Config" -S "${{ github.workspace }}" -B "${{ github.workspace }}/cmake-build" -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install" -DCMAKE_VERBOSE_MAKEFILE=YES -DBUILD_TESTING=YES
|
||||
|
||||
- name: Build Debug
|
||||
run: cmake --build "${{ github.workspace }}/cmake-build" --config "Debug" --parallel
|
||||
|
||||
- name: Run Unit Tests
|
||||
run: ctest --test-dir "${{ github.workspace }}/cmake-build" --verbose --build-config "Debug"
|
||||
|
||||
- name: Build Release
|
||||
run: cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --parallel
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
cmake --build "${{ github.workspace }}/cmake-build" --config "Debug" --target install
|
||||
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: projectm-osx-latest
|
||||
path: install/*
|
||||
Loading…
x
Reference in New Issue
Block a user