Skip to content

Commit

Permalink
fix(ci): stop using homebrew clang in macOS action
Browse files Browse the repository at this point in the history
We can't compile Miniaudio using Homebrew clang for some reason.
We had the same exact compiling error as reported in RustAudio/coreaudio-sys#96
  • Loading branch information
RiscadoA committed Oct 9, 2024
1 parent e1d6253 commit b8c58d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-engine-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Install dependencies
run: |
brew install glfw llvm@14 ccache
brew install glfw ccache
python -m pip install jinja2
- name: Get timestamp
Expand All @@ -49,7 +49,7 @@ jobs:
ccache-
- name: Configure CMake
run: CC=$(brew --prefix llvm@14)/bin/clang CXX=$(brew --prefix llvm@14)/bin/clang++ cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGLFW_USE_SUBMODULE=OFF -DBUILD_CORE_SAMPLES=ON -DBUILD_CORE_TESTS=ON -DBUILD_ENGINE_TESTS=ON -DBUILD_ENGINE_SAMPLES=ON -DUSE_CLANG_TIDY=OFF
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGLFW_USE_SUBMODULE=OFF -DBUILD_CORE_SAMPLES=ON -DBUILD_CORE_TESTS=ON -DBUILD_ENGINE_TESTS=ON -DBUILD_ENGINE_SAMPLES=ON -DUSE_CLANG_TIDY=OFF
shell: bash

- name: CCache Prolog
Expand Down

0 comments on commit b8c58d2

Please sign in to comment.