From 2f018285a4603554ad73c6a7d2b33867491d913d Mon Sep 17 00:00:00 2001 From: Ido Savion Date: Tue, 14 Apr 2026 16:40:30 +0300 Subject: [PATCH] Set MACOSX_DEPLOYMENT_TARGET=12.0 in build-cli.yml (#8525) --- .github/workflows/build-cli.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml index 3484a591e0..5349b27e44 100644 --- a/.github/workflows/build-cli.yml +++ b/.github/workflows/build-cli.yml @@ -25,6 +25,8 @@ jobs: build-cli: name: Build CLI runs-on: ${{ matrix.build-on }} + env: + MACOSX_DEPLOYMENT_TARGET: "12.0" strategy: fail-fast: false matrix: @@ -81,7 +83,7 @@ jobs: if: matrix.use-cross uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2 with: - key: ${{ matrix.architecture }}-${{ matrix.target-suffix }} + key: ${{ matrix.architecture }}-${{ matrix.target-suffix }}-macos-deployment-target-12 - name: Cache Cargo artifacts (Windows) if: matrix.os == 'windows'