Skip to content

Commit 4e77e3e

Browse files
committed
Revert to LLVM 18 until we can upgrade to macOS 14 images
1 parent c8dbd65 commit 4e77e3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,8 @@ jobs:
348348
- { name: Linux, os: ubuntu-24.04 }
349349
- { name: Linux DRM, os: ubuntu-24.04, flags: -DSFML_USE_DRM=ON }
350350
- { name: Linux OpenGL ES, os: ubuntu-24.04, flags: -DSFML_OPENGL_ES=ON }
351-
- { name: macOS, os: macos-12 }
352-
- { name: iOS, os: macos-12, flags: -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 }
351+
- { name: macOS, os: macos-13 }
352+
- { name: iOS, os: macos-13, flags: -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 }
353353
- { name: Android, os: ubuntu-24.04, flags: -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=21 -DCMAKE_ANDROID_NDK=$ANDROID_NDK -DCMAKE_ANDROID_STL_TYPE=c++_shared }
354354

355355
steps:
@@ -375,8 +375,8 @@ jobs:
375375
if: runner.os == 'macOS'
376376
run: |
377377
brew update
378-
brew install llvm || true
379-
echo /usr/local/opt/llvm/bin >> $GITHUB_PATH
378+
brew install llvm@18 || true
379+
echo "$(brew --prefix llvm@18)/bin" >> $GITHUB_PATH
380380
381381
- name: Configure
382382
run: cmake --preset dev -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_UNITY_BUILD=ON ${{matrix.platform.flags}}

0 commit comments

Comments
 (0)