From e89a135bb022bcb1f70c65a52bd1ff793122a214 Mon Sep 17 00:00:00 2001 From: Michel Promonet Date: Wed, 1 May 2024 12:11:42 +0200 Subject: [PATCH] Update cpp-macos.yml --- .github/workflows/cpp-macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp-macos.yml b/.github/workflows/cpp-macos.yml index 025aa460..885ea13c 100644 --- a/.github/workflows/cpp-macos.yml +++ b/.github/workflows/cpp-macos.yml @@ -8,7 +8,7 @@ jobs: matrix: buildtype: [Debug, Release] - runs-on: macos-13 + runs-on: macos-12 steps: - uses: actions/checkout@v4 @@ -33,7 +33,7 @@ jobs: - name: build run: | export PATH=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin:$PATH - cmake -DWEBRTCROOT=$(pwd)/webrtc -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_AR=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin/llvm-ar -DCMAKE_LINKER=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin/llvm-ld -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DDETECT_OPENSSL=OFF . + cmake -DWEBRTCROOT=$(pwd)/webrtc -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DDETECT_OPENSSL=OFF . make VERBOSE=1 - name: cpack