From 9deba04a9c272a57b00f0a36abea635919baed7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20A=CC=81ngel=20San=20Marti=CC=81n=20Rodri=CC=81guez?= Date: Tue, 28 May 2024 15:45:13 +0200 Subject: [PATCH] Set MACOSX_DEPLOYMENT_TARGET explicitly in macos builds so we can support older verions --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fb717fd8..2ca6637b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -171,6 +171,7 @@ jobs: certSecureFile: 'developerID_application.p12' certPwd: $(P12Password) - script: | + MACOSX_DEPLOYMENT_TARGET=11 cd $(Build.SourcesDirectory) VERSION="$(cat common/yacreader_global.h | grep '#define VERSION "' | tr -d '#define VERSION' | tr -d '"' )" echo "Trying to know if we are in a forked repo: $IS_FORK" @@ -228,7 +229,7 @@ jobs: certSecureFile: 'developerID_application.p12' certPwd: $(P12Password) - script: | - export MACOSX_DEPLOYMENT_TARGET=10.13 + MACOSX_DEPLOYMENT_TARGET=10.13 cd $(Build.SourcesDirectory) VERSION="$(cat common/yacreader_global.h | grep '#define VERSION "' | tr -d '#define VERSION' | tr -d '"' )" echo "Trying to know if we are in a forked repo: $IS_FORK"