clang Wno-error=c2y-extensions #719
This file contains hidden or 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-intel | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| macOS: | |
| runs-on: macos-15-intel | |
| steps: | |
| - name: Check Out Code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Use CCache | |
| uses: hendrikmuhs/ccache-action@v1.2 | |
| with: | |
| key: ${{ github.job }}-${{ runner.os }} | |
| max-size: "1500M" | |
| - name: Install Dependencies | |
| run: | | |
| brew uninstall cmake | |
| brew install --force --overwrite \ | |
| pkg-config \ | |
| libsigc++@2 \ | |
| glfw \ | |
| cmake \ | |
| yaml-cpp \ | |
| catch2 \ | |
| libomp \ | |
| vulkan-headers \ | |
| vulkan-loader \ | |
| spirv-tools \ | |
| glslang \ | |
| shaderc \ | |
| molten-vk \ | |
| ninja \ | |
| hidapi \ | |
| fftw | |
| - 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: Build Package | |
| if: ${{ ! matrix.docs }} | |
| run: | | |
| cd build | |
| cpack -G Bundle | |
| - 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 | |
| - name: Upload Package | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ngscopeclient-${{ runner.os }}-${{ github.job }}-package | |
| path: build/*.dmg |