fastlane / fastlane

🚀 The easiest way to automate building and releasing your iOS and Android apps
https://fastlane.tools
MIT License
39.53k stars 5.7k forks source link

Could not find a matching code signing identity for type AppStore on Jenkins #8858

Closed BlackWolf closed 7 years ago

BlackWolf commented 7 years ago

New Issue Checklist

Issue Description

When running match on Jenkins with readonly: false, the appstore certificate returns:

Could not find a matching code signing identity for type 'AppStore'

Strangely enough, development and adhoc work just fine and everything runs fine on my local machine (and did initially on the CI as well). Another oddity is that the last part of the app identifier is masked with asterisks in the output on the CI, while the app identifier appears normal on my local machine. The lane I'm running is jenkins_push_certs (see below for the fastfile).

Also, I added the whole create_keychain() stuff later in an attempt to fix things. The behaviour is the same when using the default keychain.

Complete output when running fastlane, including the stack trace and command used

You can use: --capture_output as the last commandline argument to get that collected for you

(sorry the output is a bit messed up, this is how Jenkins hands it to me, though):

+ fastlane jenkins_push_certs --verbose
DEBUG [2017-04-11 18:08:26.06]: Checking if there are any plugins that should be loaded...
INFO [2017-04-11 18:08:26.08]: -------------------------------------------------
INFO [2017-04-11 18:08:26.08]: --- Step: Verifying required fastlane version ---
INFO [2017-04-11 18:08:26.08]: -------------------------------------------------
INFO [2017-04-11 18:08:26.08]: Your fastlane version 2.26.1 matches the minimum requirement of 1.109.0  ✅
INFO [2017-04-11 18:08:26.09]: ------------------------------
INFO [2017-04-11 18:08:26.09]: --- Step: default_platform ---
INFO [2017-04-11 18:08:26.09]: ------------------------------
INFO [2017-04-11 18:08:26.09]: Driving the lane 'jenkins_push_certs' 🚀
INFO [2017-04-11 18:08:26.21]: -----------------------------
INFO [2017-04-11 18:08:26.21]: --- Step: delete_keychain ---
INFO [2017-04-11 18:08:26.21]: -----------------------------
INFO [2017-04-11 18:08:26.24]: -----------------------------
INFO [2017-04-11 18:08:26.24]: --- Step: create_keychain ---
INFO [2017-04-11 18:08:26.24]: -----------------------------
INFO [2017-04-11 18:08:26.33]: ---------------------------
INFO [2017-04-11 18:08:26.33]: --- Step: setup_jenkins ---
INFO [2017-04-11 18:08:26.33]: ---------------------------
DEBUG [2017-04-11 18:08:26.33]: Taking value for 'keychain_path' from environment variable 'KEYCHAIN_PATH'
DEBUG [2017-04-11 18:08:26.33]: Taking value for 'keychain_password' from environment variable 'KEYCHAIN_PASSWORD'
DEBUG [2017-04-11 18:08:26.33]: Taking value for 'code_signing_identity' from environment variable 'CODE_SIGNING_IDENTITY'

+-----------------------------+--------------------------------------------------------------------+
|                                 Summary for Setup Jenkins Action                                 |
+-----------------------------+--------------------------------------------------------------------+
| force                       | false                                                              |
| unlock_keychain             | true                                                               |
| add_keychain_to_search_list | replace                                                            |
| set_default_keychain        | true                                                               |
| keychain_path               | /Users/jenkins/jenkins-work/workspace/prj_fastlanetestpr...        |
| keychain_password           | ********                                                           |
| set_code_signing_identity   | true                                                               |
| code_signing_identity       | iPhone Distribution: My Company (QDPXXP7DPZ)                       |
| output_directory            | ./output                                                           |
| derived_data_path           | ./derivedData                                                      |
| result_bundle               | true                                                               |
+-----------------------------+--------------------------------------------------------------------+

INFO [2017-04-11 18:08:26.34]: Unlocking keychain: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain".
INFO [2017-04-11 18:08:26.46]: Set code signing identity: "iPhone Distribution: My Company (QDPXXP7DPZ)".
INFO [2017-04-11 18:08:26.46]: Set output directory path to: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/output".
INFO [2017-04-11 18:08:26.46]: Set derived data path to: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/derivedData".
INFO [2017-04-11 18:08:26.46]: Set result bundle.
INFO [2017-04-11 18:08:26.46]: -------------------
INFO [2017-04-11 18:08:26.46]: --- Step: match ---
INFO [2017-04-11 18:08:26.46]: -------------------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
INFO [2017-04-11 18:08:26.49]: Successfully loaded '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Matchfile' 📄
WARN [2017-04-11 18:08:26.49]: No values defined in './fastlane/Matchfile'

+-----------------------+------------------------------------------------------------------------+
|                                    Summary for match 2.26.1                                    |
+-----------------------+------------------------------------------------------------------------+
| app_identifier        | com.example.****                                                   |
| type                  | development                                                            |
| readonly              | false                                                                  |
| git_url               | ssh://thegiturl/repo.git                                               |
| force_for_new_devices | true                                                                   |
| username              | someone@mycompany.com                                                  |
| verbose               | true                                                                   |
| keychain_name         | ./fastlane/match.keychain                                              |
| keychain_password     | ********                                                               |
| git_branch            | master                                                                 |
| force                 | false                                                                  |
| skip_confirmation     | false                                                                  |
| shallow_clone         | false                                                                  |
| skip_docs             | false                                                                  |
| platform              | ios                                                                    |
+-----------------------+------------------------------------------------------------------------+

INFO [2017-04-11 18:08:26.50]: Cloning remote git repo...
INFO [2017-04-11 18:08:26.50]: $ GIT_TERMINAL_PROMPT=0 git clone 'ssh://thegiturl/repo.git' '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1vwpn7b'
INFO [2017-04-11 18:08:26.51]: â–¸ Cloning into '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1vwpn7b'...
INFO [2017-04-11 18:08:26.66]: â–¸ remote: Counting objects: 237, done.
INFO [2017-04-11 18:08:26.79]: â–¸ remote: Compressing objects: 100% (231/231), done.
INFO [2017-04-11 18:08:26.92]: â–¸ Receiving objects: 100% (237/237), 623.17 KiB | 0 bytes/s, done.
INFO [2017-04-11 18:08:26.92]: â–¸ remote: Total 237 (delta 0), reused 0 (delta 0)
INFO [2017-04-11 18:08:27.05]: 🔓  Decrypted 'YSDUJ5M63J.cer'
INFO [2017-04-11 18:08:27.05]: 🔓  Decrypted '9QSEDKN5YH.cer'
INFO [2017-04-11 18:08:27.06]: 🔓  Decrypted 'YSDUJ5M63J.p12'
INFO [2017-04-11 18:08:27.06]: 🔓  Decrypted '9QSEDKN5YH.p12'
INFO [2017-04-11 18:08:27.07]: 🔓  Decrypted 'AdHoc_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:27.07]: 🔓  Decrypted 'AppStore_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:27.08]: 🔓  Decrypted 'Development_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:27.08]: 🔓  Successfully decrypted certificates repo
INFO [2017-04-11 18:08:27.08]: Verifying that the certificate and profile are still valid on the Dev Portal...
INFO [2017-04-11 18:08:40.44]: Installing certificate...
INFO [2017-04-11 18:08:40.44]: $ security list-keychains -d user
INFO [2017-04-11 18:08:40.45]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:40.45]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:08:40.49]: $ security list-keychains -d user
INFO [2017-04-11 18:08:40.50]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:40.50]: $ curl -o /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/AppleWWDRCA20170411-23194-19shejh https://developer.apple.com/certificationauthority/AppleWWDRCA.cer && security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/AppleWWDRCA20170411-23194-19shejh -k /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:08:41.35]: â–¸ 1 certificate imported.
INFO [2017-04-11 18:08:41.60]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1vwpn7b/certs/development/YSDUJ5M63J.cer -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:41.75]: â–¸ 1 certificate imported.
INFO [2017-04-11 18:08:41.80]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:41.85]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1vwpn7b/certs/development/YSDUJ5M63J.p12 -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:41.92]: â–¸ 1 key imported.
INFO [2017-04-11 18:08:41.93]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:41.97]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:41.97]: â–¸ version: 512
INFO [2017-04-11 18:08:41.97]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:41.97]: â–¸ attributes:
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000006 <blob>=0x555FBD67931CA7A78DC1EA0AE96B98B8E6EE8E99  "U_\275g\223\034\247\247\215\301\352\012\351k\230\270\346\356\216\231"
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:41.97]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:41.97]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:41.97]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:41.97]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:41.97]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:41.97]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:41.98]: $ openssl x509 -inform der -in /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1vwpn7b/certs/development/YSDUJ5M63J.cer -subject -dates -noout &
INFO [2017-04-11 18:08:42.00]: â–¸ subject= /UID=6GS7TZ8J44/CN=iPhone Developer: John Doe (4XR8ZGJBC5)/OU=QDPXXP7DPZ/O=My Company/C=US
INFO [2017-04-11 18:08:42.00]: â–¸ notBefore=Apr  6 14:02:06 2017 GMT
INFO [2017-04-11 18:08:42.00]: â–¸ notAfter=Apr  6 14:02:06 2018 GMT

+-------------------+------------------------------------------------+
|                       Installed Certificate                        |
+-------------------+------------------------------------------------+
| User ID           | 6GS7TZ8J44                                     |
| Common Name       | iPhone Developer: John Doe (4XR8ZGJBC5)        |
| Organisation Unit | QDPXXP7DPZ                                     |
| Organisation      | My Company                                     |
| Country           | US                                             |
| Start Datetime    | Apr  6 14:02:06 2017 GMT                       |
| End Datetime      | Apr  6 14:02:06 2018 GMT                       |
+-------------------+------------------------------------------------+

INFO [2017-04-11 18:08:44.49]: Installing provisioning profile...
WARN [2017-04-11 18:08:45.40]: Setting environment variable 'sigh_com.example.****_development' to '667d7288-a836-41b6-8898-62b6d30c3b51'
WARN [2017-04-11 18:08:45.40]: Setting environment variable 'sigh_com.example.****_development_team-id' to 'QDPXXP7DPZ'
WARN [2017-04-11 18:08:45.40]: Setting environment variable 'sigh_com.example.****_development_profile-name' to 'match Development com.example.****'
WARN [2017-04-11 18:08:45.40]: Setting environment variable 'sigh_com.example.****_development_profile-path' to '/Users/jenkins/Library/MobileDevice/Provisioning Profiles/667d7288-a836-41b6-8898-62b6d30c3b51.mobileprovision'

+---------------------+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------+
|                                                                              Installed Provisioning Profile                                                                               |
+---------------------+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------+
| Parameter           | Environment Variable                               | Value                                                                                                          |
+---------------------+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------+
| App Identifier      |                                                    | com.example.****                                                                                           |
| Type                |                                                    | development                                                                                                    |
| Platform            |                                                    | ios                                                                                                            |
| Profile UUID        | sigh_com.example.****_development              | 667d7288-a836-41b6-8898-62b6d30c3b51                                                                           |
| Profile Name        | sigh_com.example.****_development_profile-name | match Development com.example.****                                                                         |
| Profile Path        | sigh_com.example.****_development_profile-path | /Users/jenkins/Library/MobileDevice/Provisioning Profiles/667d7288-a836-41b6-8898-62b6d30c3b51.mobileprovision |
| Development Team ID | sigh_com.example.****_development_team-id      | QDPXXP7DPZ                                                                                                     |
+---------------------+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------+

INFO [2017-04-11 18:08:45.41]: All required keys, certificates and provisioning profiles are installed 🙌
INFO [2017-04-11 18:08:45.42]: Setting Provisioning Profile type to 'development'
INFO [2017-04-11 18:08:45.42]: -------------------
INFO [2017-04-11 18:08:45.42]: --- Step: match ---
INFO [2017-04-11 18:08:45.42]: -------------------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
INFO [2017-04-11 18:08:45.43]: Successfully loaded '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Matchfile' 📄
WARN [2017-04-11 18:08:45.43]: No values defined in './fastlane/Matchfile'

+-----------------------+------------------------------------------------------------------------+
|                                    Summary for match 2.26.1                                    |
+-----------------------+------------------------------------------------------------------------+
| app_identifier        | com.example.****                                                   |
| type                  | adhoc                                                                  |
| readonly              | false                                                                  |
| git_url               | ssh://thegiturl/repo.git |
| force_for_new_devices | true                                                                   |
| username              | someone@mycompany.com                                                  |
| verbose               | true                                                                   |
| keychain_name         | ./fastlane/match.keychain                                              |
| keychain_password     | ********                                                               |
| git_branch            | master                                                                 |
| force                 | false                                                                  |
| skip_confirmation     | false                                                                  |
| shallow_clone         | false                                                                  |
| skip_docs             | false                                                                  |
| platform              | ios                                                                    |
+-----------------------+------------------------------------------------------------------------+

INFO [2017-04-11 18:08:45.43]: Cloning remote git repo...
INFO [2017-04-11 18:08:45.43]: $ GIT_TERMINAL_PROMPT=0 git clone 'ssh://thegiturl/repo.git' '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-hpuypl'
INFO [2017-04-11 18:08:45.44]: â–¸ Cloning into '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-hpuypl'...
INFO [2017-04-11 18:08:45.59]: â–¸ remote: Counting objects: 237, done.
INFO [2017-04-11 18:08:45.59]: â–¸ remote: Compressing objects: 100% (231/231), done.
INFO [2017-04-11 18:08:45.65]: â–¸ remote: Total 237 (delta 0), reused 0 (delta 0)
INFO [2017-04-11 18:08:45.65]: â–¸ Receiving objects: 100% (237/237), 623.17 KiB | 0 bytes/s, done.
INFO [2017-04-11 18:08:45.67]: 🔓  Decrypted 'YSDUJ5M63J.cer'
INFO [2017-04-11 18:08:45.68]: 🔓  Decrypted '9QSEDKN5YH.cer'
INFO [2017-04-11 18:08:45.68]: 🔓  Decrypted 'YSDUJ5M63J.p12'
INFO [2017-04-11 18:08:45.69]: 🔓  Decrypted '9QSEDKN5YH.p12'
INFO [2017-04-11 18:08:45.69]: 🔓  Decrypted 'AdHoc_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:45.70]: 🔓  Decrypted 'AppStore_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:45.71]: 🔓  Decrypted 'Development_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:45.71]: 🔓  Successfully decrypted certificates repo
INFO [2017-04-11 18:08:45.71]: Verifying that the certificate and profile are still valid on the Dev Portal...
INFO [2017-04-11 18:08:47.85]: Installing certificate...
INFO [2017-04-11 18:08:47.85]: $ security list-keychains -d user
INFO [2017-04-11 18:08:47.86]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:47.86]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:08:47.89]: â–¸ keychain: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:47.89]: â–¸ version: 256
INFO [2017-04-11 18:08:47.89]: â–¸ class: 0x80001000 
INFO [2017-04-11 18:08:47.89]: â–¸ attributes:
INFO [2017-04-11 18:08:47.89]: â–¸     "alis"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:47.89]: â–¸     "cenc"<uint32>=0x00000003 
INFO [2017-04-11 18:08:47.89]: â–¸     "ctyp"<uint32>=0x00000001 
INFO [2017-04-11 18:08:47.89]: â–¸     "hpky"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:08:47.89]: â–¸     "issu"<blob>=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341  "0b1\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\023\012APPLE INC.1&0$\006\003U\004\013\023\035APPLE CERTIFICATION AUTHORITY1\0260\024\006\003U\004\003\023\015APPLE ROOT CA"
INFO [2017-04-11 18:08:47.90]: â–¸     "labl"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:47.90]: â–¸     "skid"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:08:47.90]: â–¸     "snbr"<blob>=0x01DEBCC4396DA010  "\001\336\274\3049m\240\020"
INFO [2017-04-11 18:08:47.90]: â–¸     "subj"<blob>=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479  "0\201\2261\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\014\012Apple Inc.1,0*\006\003U\004\013\014#Apple Worldwide Developer Relations1D0B\006\003U\004\003\014;Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:48.03]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-hpuypl/certs/distribution/9QSEDKN5YH.cer -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:48.08]: â–¸ 1 certificate imported.
INFO [2017-04-11 18:08:48.13]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:48.28]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:48.28]: â–¸ version: 512
INFO [2017-04-11 18:08:48.28]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:48.28]: â–¸ attributes:
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000006 <blob>=0x555FBD67931CA7A78DC1EA0AE96B98B8E6EE8E99  "U_\275g\223\034\247\247\215\301\352\012\351k\230\270\346\356\216\231"
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.28]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-hpuypl/certs/distribution/9QSEDKN5YH.p12 -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:48.35]: â–¸ 1 key imported.
INFO [2017-04-11 18:08:48.36]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:48.41]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:48.41]: â–¸ version: 512
INFO [2017-04-11 18:08:48.41]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:48.41]: â–¸ attributes:
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000006 <blob>=0x555FBD67931CA7A78DC1EA0AE96B98B8E6EE8E99  "U_\275g\223\034\247\247\215\301\352\012\351k\230\270\346\356\216\231"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:48.41]: â–¸ version: 512
INFO [2017-04-11 18:08:48.41]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:48.41]: â–¸ attributes:
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000006 <blob>=0x030382AEBA9F10C18C3259C42CB65D4CDBB1FB4D  "\003\003\202\256\272\237\020\301\2142Y\304,\266]L\333\261\373M"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:48.41]: $ openssl x509 -inform der -in /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-hpuypl/certs/distribution/9QSEDKN5YH.cer -subject -dates -noout &
INFO [2017-04-11 18:08:48.44]: â–¸ subject= /UID=QDPXXP7DPZ/CN=iPhone Distribution: My Company (QDPXXP7DPZ)/OU=QDPXXP7DPZ/O=My Company/C=US
INFO [2017-04-11 18:08:48.44]: â–¸ notBefore=Apr  6 14:13:14 2017 GMT
INFO [2017-04-11 18:08:48.44]: â–¸ notAfter=Apr  6 14:13:14 2018 GMT

+-------------------+--------------------------------------------------------+
|                           Installed Certificate                            |
+-------------------+--------------------------------------------------------+
| User ID           | QDPXXP7DPZ                                             |
| Common Name       | iPhone Distribution: My Company (QDPXXP7DPZ) |
| Organisation Unit | QDPXXP7DPZ                                             |
| Organisation      | My Company                                   |
| Country           | US                                                     |
| Start Datetime    | Apr  6 14:13:14 2017 GMT                               |
| End Datetime      | Apr  6 14:13:14 2018 GMT                               |
+-------------------+--------------------------------------------------------+

INFO [2017-04-11 18:08:50.59]: Installing provisioning profile...
WARN [2017-04-11 18:08:51.50]: Setting environment variable 'sigh_com.example.****_adhoc' to 'e614b0be-1df3-484a-845f-02e995ba99bd'
WARN [2017-04-11 18:08:51.50]: Setting environment variable 'sigh_com.example.****_adhoc_team-id' to 'QDPXXP7DPZ'
WARN [2017-04-11 18:08:51.50]: Setting environment variable 'sigh_com.example.****_adhoc_profile-name' to 'match AdHoc com.example.****'
WARN [2017-04-11 18:08:51.50]: Setting environment variable 'sigh_com.example.****_adhoc_profile-path' to '/Users/jenkins/Library/MobileDevice/Provisioning Profiles/e614b0be-1df3-484a-845f-02e995ba99bd.mobileprovision'

+---------------------+----------------------------------------------+----------------------------------------------------------------------------------------------------------------+
|                                                                           Installed Provisioning Profile                                                                            |
+---------------------+----------------------------------------------+----------------------------------------------------------------------------------------------------------------+
| Parameter           | Environment Variable                         | Value                                                                                                          |
+---------------------+----------------------------------------------+----------------------------------------------------------------------------------------------------------------+
| App Identifier      |                                              | com.example.****                                                                                           |
| Type                |                                              | adhoc                                                                                                          |
| Platform            |                                              | ios                                                                                                            |
| Profile UUID        | sigh_com.example.****_adhoc              | e614b0be-1df3-484a-845f-02e995ba99bd                                                                           |
| Profile Name        | sigh_com.example.****_adhoc_profile-name | match AdHoc com.example.****                                                                               |
| Profile Path        | sigh_com.example.****_adhoc_profile-path | /Users/jenkins/Library/MobileDevice/Provisioning Profiles/e614b0be-1df3-484a-845f-02e995ba99bd.mobileprovision |
| Development Team ID | sigh_com.example.****_adhoc_team-id      | QDPXXP7DPZ                                                                                                     |
+---------------------+----------------------------------------------+----------------------------------------------------------------------------------------------------------------+

INFO [2017-04-11 18:08:51.51]: All required keys, certificates and provisioning profiles are installed 🙌
INFO [2017-04-11 18:08:51.51]: Setting Provisioning Profile type to 'ad-hoc'
INFO [2017-04-11 18:08:51.52]: -------------------
INFO [2017-04-11 18:08:51.52]: --- Step: match ---
INFO [2017-04-11 18:08:51.52]: -------------------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
INFO [2017-04-11 18:08:51.52]: Successfully loaded '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Matchfile' 📄
WARN [2017-04-11 18:08:51.52]: No values defined in './fastlane/Matchfile'

+-----------------------+------------------------------------------------------------------------+
|                                    Summary for match 2.26.1                                    |
+-----------------------+------------------------------------------------------------------------+
| app_identifier        | com.example.****                                                   |
| type                  | appstore                                                               |
| readonly              | false                                                                  |
| git_url               | ssh://thegiturl/repo.git |
| force_for_new_devices | true                                                                   |
| username              | someone@mycompany.com                                                  |
| verbose               | true                                                                   |
| keychain_name         | ./fastlane/match.keychain                                              |
| keychain_password     | ********                                                               |
| git_branch            | master                                                                 |
| force                 | false                                                                  |
| skip_confirmation     | false                                                                  |
| shallow_clone         | false                                                                  |
| skip_docs             | false                                                                  |
| platform              | ios                                                                    |
+-----------------------+------------------------------------------------------------------------+

INFO [2017-04-11 18:08:51.53]: Cloning remote git repo...
INFO [2017-04-11 18:08:51.53]: $ GIT_TERMINAL_PROMPT=0 git clone 'ssh://thegiturl/repo.git' '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1svatad'
INFO [2017-04-11 18:08:51.54]: â–¸ Cloning into '/var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1svatad'...
INFO [2017-04-11 18:08:51.79]: â–¸ remote: Counting objects: 237, done.
INFO [2017-04-11 18:08:51.80]: â–¸ remote: Compressing objects: 100% (231/231), done.
INFO [2017-04-11 18:08:51.85]: â–¸ remote: Total 237 (delta 0), reused 0 (delta 0)
INFO [2017-04-11 18:08:51.85]: â–¸ Receiving objects: 100% (237/237), 623.17 KiB | 0 bytes/s, done.
INFO [2017-04-11 18:08:51.87]: 🔓  Decrypted 'YSDUJ5M63J.cer'
INFO [2017-04-11 18:08:51.87]: 🔓  Decrypted '9QSEDKN5YH.cer'
INFO [2017-04-11 18:08:51.88]: 🔓  Decrypted 'YSDUJ5M63J.p12'
INFO [2017-04-11 18:08:51.88]: 🔓  Decrypted '9QSEDKN5YH.p12'
INFO [2017-04-11 18:08:51.89]: 🔓  Decrypted 'AdHoc_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:51.90]: 🔓  Decrypted 'AppStore_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:51.90]: 🔓  Decrypted 'Development_com.example.****.mobileprovision'
INFO [2017-04-11 18:08:51.90]: 🔓  Successfully decrypted certificates repo
INFO [2017-04-11 18:08:51.90]: Verifying that the certificate and profile are still valid on the Dev Portal...
INFO [2017-04-11 18:08:54.57]: Installing certificate...
INFO [2017-04-11 18:08:54.57]: $ security list-keychains -d user
INFO [2017-04-11 18:08:54.58]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:54.58]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:08:54.62]: â–¸ keychain: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:08:54.62]: â–¸ version: 256
INFO [2017-04-11 18:08:54.62]: â–¸ class: 0x80001000 
INFO [2017-04-11 18:08:54.62]: â–¸ attributes:
INFO [2017-04-11 18:08:54.62]: â–¸     "alis"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:54.62]: â–¸     "cenc"<uint32>=0x00000003 
INFO [2017-04-11 18:08:54.62]: â–¸     "ctyp"<uint32>=0x00000001 
INFO [2017-04-11 18:08:54.62]: â–¸     "hpky"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:08:54.62]: â–¸     "issu"<blob>=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341  "0b1\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\023\012APPLE INC.1&0$\006\003U\004\013\023\035APPLE CERTIFICATION AUTHORITY1\0260\024\006\003U\004\003\023\015APPLE ROOT CA"
INFO [2017-04-11 18:08:54.62]: â–¸     "labl"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:54.62]: â–¸     "skid"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:08:54.62]: â–¸     "snbr"<blob>=0x01DEBCC4396DA010  "\001\336\274\3049m\240\020"
INFO [2017-04-11 18:08:54.62]: â–¸     "subj"<blob>=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479  "0\201\2261\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\014\012Apple Inc.1,0*\006\003U\004\013\014#Apple Worldwide Developer Relations1D0B\006\003U\004\003\014;Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:08:54.75]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1svatad/certs/distribution/9QSEDKN5YH.cer -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:54.81]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:54.85]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:54.85]: â–¸ version: 512
INFO [2017-04-11 18:08:54.85]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:54.85]: â–¸ attributes:
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000006 <blob>=0x555FBD67931CA7A78DC1EA0AE96B98B8E6EE8E99  "U_\275g\223\034\247\247\215\301\352\012\351k\230\270\346\356\216\231"
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:54.85]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:54.85]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.85]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.85]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.85]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.85]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:54.86]: â–¸ version: 512
INFO [2017-04-11 18:08:54.86]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:54.86]: â–¸ attributes:
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000006 <blob>=0x030382AEBA9F10C18C3259C42CB65D4CDBB1FB4D  "\003\003\202\256\272\237\020\301\2142Y\304,\266]L\333\261\373M"
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.86]: $ security import /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1svatad/certs/distribution/9QSEDKN5YH.p12 -k '/Users/jenkins/Library/Keychains/fastlane/match.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security
INFO [2017-04-11 18:08:54.92]: $ security set-key-partition-list -S apple-tool:,apple: -k "****" /Users/jenkins/Library/Keychains/fastlane/match.keychain-db
INFO [2017-04-11 18:08:54.97]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:54.97]: â–¸ version: 512
INFO [2017-04-11 18:08:54.97]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:54.97]: â–¸ attributes:
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000006 <blob>=0x555FBD67931CA7A78DC1EA0AE96B98B8E6EE8E99  "U_\275g\223\034\247\247\215\301\352\012\351k\230\270\346\356\216\231"
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:54.97]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:54.98]: â–¸ version: 512
INFO [2017-04-11 18:08:54.98]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:54.98]: â–¸ attributes:
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000001 <blob>="Imported Private Key"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000006 <blob>=0x030382AEBA9F10C18C3259C42CB65D4CDBB1FB4D  "\003\003\202\256\272\237\020\301\2142Y\304,\266]L\333\261\373M"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸ keychain: "/Users/jenkins/Library/Keychains/fastlane/match.keychain-db"
INFO [2017-04-11 18:08:54.98]: â–¸ version: 512
INFO [2017-04-11 18:08:54.98]: â–¸ class: 0x00000010 
INFO [2017-04-11 18:08:54.98]: â–¸ attributes:
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000000 <uint32>=0x00000010 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000001 <blob>="5FE9D5E33AAF58F5"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000002 <blob>=<NULL>
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000003 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000004 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000005 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000006 <blob>="5FE9D5E33AAF58F5"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000007 <blob>=<NULL>
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000008 <blob>=0x7B38373139316361322D306663392D313164342D383439612D3030303530326235323132327D00  "{87191ca2-0fc9-11d4-849a-000502b52122}\000"
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000009 <uint32>=0x0000002A  "\000\000\000*"
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000A <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000B <uint32>=0x00000800 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000C <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000D <blob>=0x0000000000000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000E <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000000F <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000010 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000011 <uint32>=0x00000000 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000012 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000013 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000014 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000015 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000016 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000017 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000018 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x00000019 <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.98]: â–¸     0x0000001A <uint32>=0x00000001 
INFO [2017-04-11 18:08:54.99]: $ openssl x509 -inform der -in /var/folders/2h/v_ch45bd78jd274yrhbvg3jr0000gq/T/d20170411-23194-1svatad/certs/distribution/9QSEDKN5YH.cer -subject -dates -noout &
INFO [2017-04-11 18:08:55.01]: â–¸ subject= /UID=QDPXXP7DPZ/CN=iPhone Distribution: My Company (QDPXXP7DPZ)/OU=QDPXXP7DPZ/O=My Company/C=US
INFO [2017-04-11 18:08:55.01]: â–¸ notBefore=Apr  6 14:13:14 2017 GMT
INFO [2017-04-11 18:08:55.01]: â–¸ notAfter=Apr  6 14:13:14 2018 GMT

+-------------------+--------------------------------------------------------+
|                           Installed Certificate                            |
+-------------------+--------------------------------------------------------+
| User ID           | QDPXXP7DPZ                                             |
| Common Name       | iPhone Distribution: My Company (QDPXXP7DPZ) |
| Organisation Unit | QDPXXP7DPZ                                             |
| Organisation      | My Company                                   |
| Country           | US                                                     |
| Start Datetime    | Apr  6 14:13:14 2017 GMT                               |
| End Datetime      | Apr  6 14:13:14 2018 GMT                               |
+-------------------+--------------------------------------------------------+

Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------
Successfully loaded Appfile at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/Appfile'
-------

+-------------------------------------+-------------------------------------+
|                          Summary for sigh 2.26.1                          |
+-------------------------------------+-------------------------------------+
| app_identifier                      | com.example.****                |
| username                            | someone@mycompany.com               |
| force                               | true                                |
| cert_id                             | 9QSEDKN5YH                          |
| provisioning_name                   | match AppStore com.example.**** |
| ignore_profiles_with_different_name | true                                |
| platform                            | ios                                 |
| adhoc                               | false                               |
| development                         | false                               |
| skip_install                        | false                               |
| skip_fetch_profiles                 | false                               |
| skip_certificate_verification       | false                               |
+-------------------------------------+-------------------------------------+

INFO [2017-04-11 18:08:57.16]: Starting login with user 'someone@mycompany.com'
INFO [2017-04-11 18:08:59.78]: Successfully logged in
INFO [2017-04-11 18:08:59.78]: Fetching profiles...
INFO [2017-04-11 18:09:00.82]: Verifying certificates...
INFO [2017-04-11 18:09:01.07]: $ security list-keychains -d user
INFO [2017-04-11 18:09:01.08]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:09:01.08]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:09:01.11]: â–¸ keychain: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:09:01.11]: â–¸ version: 256
INFO [2017-04-11 18:09:01.11]: â–¸ class: 0x80001000 
INFO [2017-04-11 18:09:01.11]: â–¸ attributes:
INFO [2017-04-11 18:09:01.11]: â–¸     "alis"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:09:01.11]: â–¸     "cenc"<uint32>=0x00000003 
INFO [2017-04-11 18:09:01.11]: â–¸     "ctyp"<uint32>=0x00000001 
INFO [2017-04-11 18:09:01.11]: â–¸     "hpky"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:09:01.11]: â–¸     "issu"<blob>=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341  "0b1\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\023\012APPLE INC.1&0$\006\003U\004\013\023\035APPLE CERTIFICATION AUTHORITY1\0260\024\006\003U\004\003\023\015APPLE ROOT CA"
INFO [2017-04-11 18:09:01.11]: â–¸     "labl"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:09:01.11]: â–¸     "skid"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:09:01.11]: â–¸     "snbr"<blob>=0x01DEBCC4396DA010  "\001\336\274\3049m\240\020"
INFO [2017-04-11 18:09:01.11]: â–¸     "subj"<blob>=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479  "0\201\2261\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\014\012Apple Inc.1,0*\006\003U\004\013\014#Apple Worldwide Developer Relations1D0B\006\003U\004\003\014;Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:09:01.25]: Certificate for Provisioning Profile 'match AppStore com.example.****' not available locally: 9QSEDKN5YH, skipping this one...
WARN [2017-04-11 18:09:01.25]: No existing profiles found, that match the certificates you have installed locally! Creating a new provisioning profile for you
INFO [2017-04-11 18:09:02.99]: $ security list-keychains -d user
INFO [2017-04-11 18:09:03.01]: â–¸     "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:09:03.01]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/jenkins/jenkins-work/workspace/prj_mobility-cc-zh\+fastlane/jenkins_ios_kickstart.keychain
INFO [2017-04-11 18:09:03.04]: â–¸ keychain: "/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain"
INFO [2017-04-11 18:09:03.04]: â–¸ version: 256
INFO [2017-04-11 18:09:03.04]: â–¸ class: 0x80001000 
INFO [2017-04-11 18:09:03.04]: â–¸ attributes:
INFO [2017-04-11 18:09:03.04]: â–¸     "alis"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:09:03.04]: â–¸     "cenc"<uint32>=0x00000003 
INFO [2017-04-11 18:09:03.04]: â–¸     "ctyp"<uint32>=0x00000001 
INFO [2017-04-11 18:09:03.04]: â–¸     "hpky"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:09:03.04]: â–¸     "issu"<blob>=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341  "0b1\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\023\012APPLE INC.1&0$\006\003U\004\013\023\035APPLE CERTIFICATION AUTHORITY1\0260\024\006\003U\004\003\023\015APPLE ROOT CA"
INFO [2017-04-11 18:09:03.04]: â–¸     "labl"<blob>="Apple Worldwide Developer Relations Certification Authority"
INFO [2017-04-11 18:09:03.04]: â–¸     "skid"<blob>=0x88271709A9B618608BECEBBAF64759C55254A3B7  "\210'\027\011\251\266\030`\213\354\353\272\366GY\305RT\243\267"
INFO [2017-04-11 18:09:03.04]: â–¸     "snbr"<blob>=0x01DEBCC4396DA010  "\001\336\274\3049m\240\020"
INFO [2017-04-11 18:09:03.04]: â–¸     "subj"<blob>=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479  "0\201\2261\0130\011\006\003U\004\006\023\002US1\0230\021\006\003U\004\012\014\012Apple Inc.1,0*\006\003U\004\013\014#Apple Worldwide Developer Relations1D0B\006\003U\004\003\014;Apple Worldwide Developer Relations Certification Authority"
WARN [2017-04-11 18:09:03.16]: No certificates for filter: Certificate ID: '9QSEDKN5YH' 
WARN [2017-04-11 18:09:03.17]: Lane Context:
INFO [2017-04-11 18:09:03.17]: {:DEFAULT_PLATFORM=>:ios, :PLATFORM_NAME=>nil, :LANE_NAME=>"jenkins_push_certs", :ORIGINAL_DEFAULT_KEYCHAIN=>"\"/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/jenkins_ios_kickstart.keychain\"", :SIGH_PROFILE_TYPE=>"ad-hoc"}
ERROR [2017-04-11 18:09:03.17]: Could not find a matching code signing identity for type 'AppStore'. It is recommended to use match to manage code signing for you, more information on https://codesigning.guide.If you don't want to do so, you can also use cert to generate a new one: https://fastlane.tools/cert
INFO [2017-04-11 18:09:03.17]: Successfully generated documentation at path '/Users/jenkins/jenkins-work/workspace/prj_fastlanetestproject/app/fastlane/README.md'

+------+-------------------------------------+-------------+
|                     fastlane summary                     |
+------+-------------------------------------+-------------+
| Step | Action                              | Time (in s) |
+------+-------------------------------------+-------------+
| 1    | Verifying required fastlane version | 0           |
| 2    | default_platform                    | 0           |
| 3    | unlock_keychain                     | 0           |
| 4    | delete_keychain                     | 0           |
| 5    | create_keychain                     | 0           |
| 6    | setup_jenkins                       | 0           |
| 7    | match                               | 18          |
| 8    | match                               | 6           |
| 💥   | match                               | 11          |
+------+-------------------------------------+-------------+

ERROR [2017-04-11 18:09:03.18]: fastlane finished with errors
security: SecKeychainSearchCopyNext: The specified item could not be found in the keychain.
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0  1062    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  1062  100  1062    0     0   1307      0 --:--:-- --:--:-- --:--:--  1306
security: SecItemCopyMatching: The specified item could not be found in the keychain.
security: SecKeychainItemImport: The specified item already exists in the keychain.
security: SecKeychainItemImport: The specified item already exists in the keychain.
/Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane_core/lib/fastlane_core/ui/interface.rb:150:in `user_error!': [!] Could not find a matching code signing identity for type 'AppStore'. It is recommended to use match to manage code signing for you, more information on https://codesigning.guide.If you don't want to do so, you can also use cert to generate a new one: https://fastlane.tools/cert (FastlaneCore::Interface::FastlaneError)
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane_core/lib/fastlane_core/ui/ui.rb:14:in `method_missing'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/sigh/lib/sigh/runner.rb:227:in `certificate_to_use'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/sigh/lib/sigh/runner.rb:137:in `create_profile!'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/sigh/lib/sigh/runner.rb:35:in `run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/sigh/lib/sigh/manager.rb:7:in `start'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/generator.rb:68:in `generate_provisioning_profile'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:130:in `fetch_provisioning_profile'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:40:in `block (2 levels) in run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:39:in `loop'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:39:in `block in run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:38:in `each'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/match/lib/match/runner.rb:38:in `run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/actions/match.rb:8:in `run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:252:in `block (2 levels) in execute_action'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/actions/actions_helper.rb:50:in `execute_action'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:230:in `block in execute_action'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:226:in `chdir'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:226:in `execute_action'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:148:in `trigger_action_by_name'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/fast_file.rb:146:in `method_missing'
    from Fastfile:62:in `block in parsing_binding'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/lane.rb:33:in `call'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/lane.rb:33:in `call'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:49:in `block in execute'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:45:in `chdir'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/runner.rb:45:in `execute'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/lane_manager.rb:52:in `cruise_lane'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/command_line_handler.rb:30:in `handle'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/commands_generator.rb:104:in `block (2 levels) in run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/commander-fastlane-4.4.4/lib/commander/command.rb:178:in `call'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/commander-fastlane-4.4.4/lib/commander/command.rb:178:in `call'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/commander-fastlane-4.4.4/lib/commander/command.rb:153:in `run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/commander-fastlane-4.4.4/lib/commander/runner.rb:476:in `run_active_command'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:38:in `run!'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/commander-fastlane-4.4.4/lib/commander/delegates.rb:15:in `run!'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/commands_generator.rb:303:in `run'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/commands_generator.rb:42:in `start'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/fastlane/lib/fastlane/cli_tools_distributor.rb:65:in `take_off'
    from /Users/jenkins/.fastlane/bin/bundle/lib/ruby/gems/2.2.0/gems/fastlane-2.26.1/bin/fastlane:20:in `<top (required)>'
    from /Users/jenkins/.fastlane/bin/bundle/bin/fastlane:22:in `load'
    from /Users/jenkins/.fastlane/bin/bundle/bin/fastlane:22:in `<main>'
Build step 'Execute shell' marked build as failure
Recording test results
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files were found. Configuration error?
Started calculate disk usage of build
Finished Calculation of disk usage of build in 0 seconds
Started calculate disk usage of workspace
Finished Calculation of disk usage of workspace in 0 seconds
Finished: FAILURE

Environment

Please run fastlane env and copy the output below. This will help us help you :+1: If you used --capture_output option please remove this block - as it is already included there.

✅ fastlane environment ✅ ### Stack | Key | Value | | --------------------------- | ------------------------------------------- | | OS | 10.12.1 | | Ruby | 2.2.4 | | Bundler? | false | | Git | git version 2.10.1 (Apple Git-78) | | Installation Source | ~/.fastlane/bin/bundle/bin/fastlane | | Host | Mac OS X 10.12.1 (16B2555) | | Ruby Lib Dir | ~/.fastlane/bin/bundle/lib | | OpenSSL Version | OpenSSL 1.0.2g 1 Mar 2016 | | Is contained | true | | Is homebrew | false | | Is installed via Fabric.app | false | | Xcode Path | /Applications/Xcode.app/Contents/Developer/ | | Xcode Version | 8.2.1 | ### System Locale | Variable | Value | | | -------- | ----------- | - | | LANG | en_US.UTF-8 | ✅ | | LC_ALL | en_US.UTF-8 | ✅ | | LANGUAGE | en_US.UTF-8 | ✅ | ### fastlane files:
`./fastlane/Fastfile` ```ruby # More documentation about how to customize your build # can be found here: # https://docs.fastlane.tools fastlane_version "1.109.0" # This value helps us track success metrics for Fastfiles # we automatically generate. Feel free to remove this line # once you get things running smoothly! generated_fastfile_id "72d2852a-5534-4249-ae1d-1e74de2b5b4a" default_platform :ios # Fastfile actions accept additional configuration, but # don't worry, fastlane will prompt you for required # info which you can add here later lane :jenkins_prepare do setup_jenkins end lane :jenkins_update_certs do match(app_identifier: "com.example.****", type: "development", readonly: true, git_url: ""ssh://thegiturl/repo.git") match(app_identifier: "com.example.****", type: "adhoc", readonly: true, git_url: ""ssh://thegiturl/repo.git") match(app_identifier: "com.example.****", type: "appstore", readonly: true, git_url: ""ssh://thegiturl/repo.git") end lane :jenkins_push_certs do # Create a new keychain where we can store our cert so we don't do it in a global keychain if File.exists?(File.expand_path('../fastlane/match.keychain')) delete_keychain( keychain_path: File.expand_path('../fastlane/match.keychain') ) end create_keychain( path: File.expand_path('../fastlane/match.keychain'), password: "somepassword", default_keychain: false, unlock: true, timeout: 60, lock_when_sleeps: true, lock_after_timeout: 60, add_to_search_list: false ) setup_jenkins() match(app_identifier: "com.example.fastlanetest", type: "development", readonly: false, git_url: "ssh://thegiturl/repo.git", force_for_new_devices: true, username: "someone@mycompany.com", verbose: true, keychain_name: "./fastlane/match.keychain", keychain_password: "somepassword") match(app_identifier: "com.example.fastlanetest", type: "adhoc", readonly: false, git_url: "ssh://thegiturl/repo.git", force_for_new_devices: true, username: "someone@mycompany.com", verbose: true, keychain_name: "./fastlane/match.keychain", keychain_password: "somepassword") match(app_identifier: "com.example.fastlanetest", type: "appstore", readonly: false, git_url: "ssh://thegiturl/repo.git", force_for_new_devices: true, username: "someone@mycompany.com", verbose: true, keychain_name: "./fastlane/match.keychain", keychain_password: "somepassword") end lane :jenkins_build do gym(scheme: "Fastlanetest - Adhoc", clean: true) end lane :create_snapshots do snapshot(scheme: "FastlanetestUITests", languages: ["en-US", "de-DE"], clear_previous_screenshots: true) frameit end ```
`./fastlane/Appfile` ```ruby # The Appfile can be used to specify information that's used across all fastlane # tools, like your username or the app's bundle identifier. # # For more details, check out the documentation at: # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md # app_identifier "com.your.app" # the bundle identifier of your app # apple_id "apple@fastlane.tools" # Your Apple ID ```
### fastlane gems | Gem | Version | Update-Status | | -------- | ------- | ------------- | | fastlane | 2.26.1 | ✅ Up-To-Date | ### Loaded fastlane plugins: **No plugins Loaded**
Loaded gems | Gem | Version | | ------------------------- | ------------ | | CFPropertyList | 2.3.5 | | activesupport | 4.2.7.1 | | addressable | 2.5.0 | | babosa | 1.0.2 | | bigdecimal | 1.2.6 | | bundler | 1.14.3 | | claide | 1.0.1 | | colored | 1.2 | | commander | 4.4.3 | | commander-fastlane | 4.4.4 | | domain_name | 0.5.20161129 | | dotenv | 2.2.0 | | excon | 0.54.0 | | faraday | 0.11.0 | | faraday-cookie_jar | 0.0.6 | | faraday_middleware | 0.11.0.1 | | fastimage | 2.0.1 | | gh_inspector | 1.0.3 | | google-api-client | 0.9.26 | | googleauth | 0.5.1 | | highline | 1.7.8 | | http-cookie | 1.0.3 | | httpclient | 2.8.3 | | hurley | 0.2 | | i18n | 0.7.0 | | io-console | 0.4.3 | | json | 1.8.1 | | jwt | 1.5.6 | | libxml-ruby | 2.9.0 | | little-plugger | 1.1.4 | | logging | 2.1.0 | | memoist | 0.15.0 | | mime-types | 3.1 | | mime-types-data | 3.2016.0521 | | mini_magick | 4.5.1 | | minitest | 5.4.3 | | multi_json | 1.12.1 | | multi_xml | 0.6.0 | | multipart-post | 2.0.0 | | nanaimo | 0.2.3 | | nokogiri | 1.5.6 | | os | 0.9.6 | | plist | 3.2.0 | | power_assert | 0.2.2 | | psych | 2.0.8 | | public_suffix | 2.0.5 | | rake | 10.4.2 | | rdoc | 4.2.0 | | representable | 2.3.0 | | retriable | 2.1.0 | | rouge | 1.11.1 | | rubygems-update | 2.5.2 | | rubyzip | 1.2.0 | | security | 0.1.3 | | signet | 0.7.3 | | slack-notifier | 1.5.1 | | sqlite3 | 1.3.13 | | terminal-notifier | 1.7.1 | | terminal-table | 1.7.3 | | test-unit | 3.0.8 | | thread_safe | 0.3.5 | | tty-screen | 0.5.0 | | tzinfo | 1.2.2 | | uber | 0.0.15 | | unf | 0.1.4 | | unf_ext | 0.0.7.2 | | unicode-display_width | 1.1.3 | | word_wrap | 1.0.0 | | xcodeproj | 1.4.2 | | xcpretty | 0.2.4 | | xcpretty-travis-formatter | 0.0.4 |
*generated on:* **2017-04-12**
fastlane-bot commented 7 years ago

It seems like this issue might be related to code signing :no_entry_sign:

Have you seen our new Code Signing Troubleshooting Guide? It will help you resolve the most common code signing issues :+1:

BlackWolf commented 7 years ago

As an update to this: The problem seems to be that match never imports the Distribution Certificate into the keychain on the CI.

It initially worked because the old certificate was already imported via the XCode plugin. At some point, match created a new certificate and new provisioning profiles on the ADP. Everything is also correctly uploaded to the git repo. It seems match does download and use the new provisioning profiles, it apparently does NOT import the new certificate, obviously leading to a signing error.

Strangely enough, I think everything works correctly on my local machine.

Any idea on why this happens? I would love to eventually automate the entire process, so manually uploading the new distribution certificate does not seem like a good solution, and as far as I understand, match should handle this, right?

BlackWolf commented 7 years ago

I can definitely confirm this is the issue. I provided a separate .keychain file that already contains the Distribution Certificate to match (using unlock_keychain()) and everything is all peachy. But, like I said, doing this manually is not really an option for me (since the whole point of using match for us is to fully automate the whole certificate/profile stuff)

BlackWolf commented 7 years ago

I was able to track this down further to an error with escaping paths when importing certificates. I moved this to a new issue: #8929