diff --git a/.github/workflows/build-conan-deps.yml b/.github/workflows/build-conan-deps.yml index 8c02da0..1de9e2d 100644 --- a/.github/workflows/build-conan-deps.yml +++ b/.github/workflows/build-conan-deps.yml @@ -151,7 +151,6 @@ jobs: conan profile detect --force conan install /tmp/conanfile.py \ - --update \ --build='missing' \ -s build_type=Release \ -s compiler.cppstd="$cppstd" \ @@ -283,10 +282,11 @@ jobs: - name: Install dependencies if: steps.cache-conan.outputs.cache-hit != 'true' run: | - conan install conanfile.py \ - --build='missing' \ - -s build_type=Release \ - -s compiler.cppstd=${{ inputs.cppstd }} \ + conan install conanfile.py \ + --build='missing' \ + -s build_type=Release \ + -s compiler.cppstd=${{ inputs.cppstd }} \ + -s:h os.version="$MACOSX_DEPLOYMENT_TARGET" \ --options='*/*:shared=False' - name: Clean Conan cache (post-build) @@ -392,7 +392,6 @@ jobs: if: steps.cache-conan.outputs.cache-hit != 'true' run: | conan install conanfile.py \ - --update \ --build='missing' \ -s build_type=Release \ -s compiler.runtime_type=Release \