Trying to fix github actions 14 #75
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: CMake | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest] | |
| build_type: [Debug, Release] | |
| # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
| # You can convert this to a matrix build if you need cross-platform coverage. | |
| # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: List Xcode installations | |
| if: matrix.os == 'macos-14' | |
| run: sudo ls -1 /Applications | grep "Xcode" | |
| - name: Select Xcode 16.2 | |
| if: matrix.os == 'macos-14' | |
| run: sudo xcode-select -s /Applications/Xcode_16.2.0.app/Contents/Developer | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive # β This ensures Eigen is fetched | |
| - name: Cache CPM dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{github.workspace}}/libs | |
| key: cpm-deps-${{ runner.os }}-${{ hashFiles('cmake/cpm.cmake', 'CMakeLists.txt') }} | |
| restore-keys: | | |
| cpm-deps-${{ runner.os }}- | |
| - name: Setup vcpkg (Unix) | |
| if: matrix.os != 'windows-latest' | |
| run: | | |
| git clone https://github.com/Microsoft/vcpkg.git | |
| ./vcpkg/bootstrap-vcpkg.sh | |
| shell: bash | |
| - name: Setup vcpkg (Windows) | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| git clone https://github.com/Microsoft/vcpkg.git | |
| .\vcpkg\bootstrap-vcpkg.bat | |
| shell: cmd | |
| - name: Install JUCE dependencies (Linux) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libasound2-dev \ | |
| libfreetype6-dev \ | |
| libfontconfig1-dev \ | |
| libx11-dev \ | |
| libxrandr-dev \ | |
| libxinerama-dev \ | |
| libxcursor-dev \ | |
| libgl1-mesa-dev \ | |
| pkg-config | |
| - name: Configure CMake | |
| run: cmake -S . -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake | |
| - name: Build | |
| # Build your program with the given configuration | |
| run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build_type }} | |
| - name: Test | |
| working-directory: ${{github.workspace}}/build | |
| # Execute tests defined by the CMake configuration. | |
| # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
| run: ctest -C ${{ matrix.build_type }} | |