Merge pull request #809 from fredzo/master #209
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
name: Build-macOS-arm | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
macOS: | |
runs-on: macos-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Use CCache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }}-${{ runner.os }} | |
max-size: "1500M" | |
- name: Install Dependencies | |
run: | | |
brew install \ | |
pkg-config \ | |
[email protected] \ | |
libsigc++@2 \ | |
glfw \ | |
cmake \ | |
yaml-cpp \ | |
catch2 \ | |
libomp \ | |
vulkan-headers \ | |
vulkan-loader \ | |
spirv-tools \ | |
glslang \ | |
shaderc \ | |
molten-vk \ | |
ninja \ | |
hidapi | |
- name: Configure | |
run: | | |
export CMAKE_C_COMPILER_LAUNCHER=ccache | |
export CMAKE_CXX_COMPILER_LAUNCHER=ccache | |
mkdir build | |
cd build | |
cmake \ | |
-DDISABLE_PCH=ON \ | |
-G Ninja \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DBUILD_DOCS=OFF \ | |
-DBUILD_TESTING=ON \ | |
-DCMAKE_PREFIX_PATH="$(brew --prefix)/opt/libomp" \ | |
.. | |
- name: Build | |
run: | | |
cd build | |
ninja | |
- name: Run Tests | |
if: ${{ false }} # Metal is not available on GH macOS runners | |
run: | | |
cd build | |
ninja test | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ngscopeclient-${{ runner.os }}-${{ github.job }} | |
path: | | |
build/src/ngscopeclient/ngscopeclient | |
build/src/ngscopeclient/icons/* | |
build/src/ngscopeclient/shaders/* | |
build/lib/scopehal/libscopehal.dylib | |
build/lib/scopeprotocols/libscopeprotocols.dylib |