From 74d8d64bed4794218c6c1d14c0c3d98d484f35c1 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Sat, 18 May 2024 13:42:44 +0800 Subject: [PATCH] CI: macOS build attempt to fix macOS CI blindly... --- .github/workflows/macos.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 6f24f01..a34ad41 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -17,11 +17,21 @@ jobs: with: version: '6.7.0' modules: 'qtmultimedia' + - name: Install Conan + id: conan + working-directory: ./ + shell: bash + run: | + pip3 install wheel setuptools + pip3 install conan --upgrade + conan --version + conan profile detect - name: Build working-directory: ./ run: | - cmake -B build . - cmake --build build -j + conan install --requires=icu/74.2 --build=missing + cmake . --preset conan-default + cmake --build --preset conan-release - name: Package id: package working-directory: ./