From ba1ed1f44108f0bcbba73f0e02b1d52eea520ef9 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 13 Sep 2023 18:06:39 +0300 Subject: [PATCH] Fix path to build.keychain. --- .cirrus.yml | 4 ++-- appveyor.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 3f66e7330..7ac5d3a55 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -208,10 +208,10 @@ macos_task_template: &MACOS_TASK_TEMPLATE # Add certificates to keychain and allow codesign to access them # 1) Apple Worldwide Developer Relations Certification Authority - curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer --output $HOME/AppleWWDRCAG3.cer --silent - - security import $HOME/AppleWWDRCAG3.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/AppleWWDRCAG3.cer -k build.keychain -T /usr/bin/codesign # 2) Developer Authentication Certification Authority - curl https://www.apple.com/certificateauthority/DeveloperIDG2CA.cer --output $HOME/DeveloperIDG2CA.cer --silent - - security import $HOME/DeveloperIDG2CA.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/DeveloperIDG2CA.cer -k build.keychain -T /usr/bin/codesign # 3) Developer ID - security import certificate.p12 -k build.keychain -P "$MACOS_CERTIFICATE_PWD" -T /usr/bin/codesign # Delete the files, we no longer need them diff --git a/appveyor.yml b/appveyor.yml index 4610c8e85..68d60135c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -630,10 +630,10 @@ for: # Add certificates to keychain and allow codesign to access them # 1) Apple Worldwide Developer Relations Certification Authority - curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer --output $HOME/AppleWWDRCAG3.cer --silent - - security import $HOME/AppleWWDRCAG3.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/AppleWWDRCAG3.cer -k build.keychain -T /usr/bin/codesign # 2) Developer Authentication Certification Authority - curl https://www.apple.com/certificateauthority/DeveloperIDG2CA.cer --output $HOME/DeveloperIDG2CA.cer --silent - - security import $HOME/DeveloperIDG2CA.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/DeveloperIDG2CA.cer -k build.keychain -T /usr/bin/codesign # 3) Developer ID - security import certificate.p12 -k build.keychain -P "$MACOS_CERTIFICATE_PWD" -T /usr/bin/codesign # Delete the files, we no longer need them @@ -798,10 +798,10 @@ for: # Add certificates to keychain and allow codesign to access them # 1) Apple Worldwide Developer Relations Certification Authority - curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer --output $HOME/AppleWWDRCAG3.cer --silent - - security import $HOME/AppleWWDRCAG3.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/AppleWWDRCAG3.cer -k build.keychain -T /usr/bin/codesign # 2) Developer Authentication Certification Authority - curl https://www.apple.com/certificateauthority/DeveloperIDG2CA.cer --output $HOME/DeveloperIDG2CA.cer --silent - - security import $HOME/DeveloperIDG2CA.cer -k ~/Library/Keychains/build.keychain -T /usr/bin/codesign + - security import $HOME/DeveloperIDG2CA.cer -k build.keychain -T /usr/bin/codesign # 3) Developer ID - security import certificate.p12 -k build.keychain -P "$MACOS_CERTIFICATE_PWD" -T /usr/bin/codesign # Delete the files, we no longer need them