@@ -93,23 +93,16 @@ jobs:
93
93
codesign -vvv --force --deep --sign "$APPLE_CODE_SIGN_IDENTITY_APP" \
94
94
--entitlements lsl.entitlements --options runtime \
95
95
install/Frameworks/lsl.framework/Versions/A/lsl
96
- codesign -vvv --force --deep --sign "$APPLE_CODE_SIGN_IDENTITY_APP" \
97
- --entitlements lsl.entitlements --options runtime \
98
- install/Frameworks/lsl.framework
99
- echo "✅ Verifying binary signatures in install target..."
100
96
codesign -vvv --verify --deep --strict install/Frameworks/lsl.framework/Versions/A/lsl
101
- codesign -vvv --verify --deep --strict install/Frameworks/lsl.framework
102
97
elif [[ "${{ matrix.config.name }}" == "iOS" ]]; then
103
98
codesign -vvv --force --deep --sign "$APPLE_CODE_SIGN_IDENTITY_APP" \
104
99
install/Frameworks/lsl.framework/lsl
105
- codesign -vvv --force --deep --sign "$APPLE_CODE_SIGN_IDENTITY_APP" \
106
- install/Frameworks/lsl.framework
107
- echo "✅ Verifying binary signatures in install target..."
108
100
codesign -vvv --verify --deep --strict install/Frameworks/lsl.framework/lsl
109
- codesign -vvv --verify --deep --strict install/Frameworks/lsl.framework
110
101
fi
111
-
112
-
102
+ codesign -vvv --force --deep --sign "$APPLE_CODE_SIGN_IDENTITY_APP" \
103
+ --entitlements lsl.entitlements --options runtime \
104
+ install/Frameworks/lsl.framework
105
+ codesign -vvv --verify --deep --strict install/Frameworks/lsl.framework
113
106
114
107
# run internal tests
115
108
# - name: unit tests
@@ -141,7 +134,7 @@ jobs:
141
134
--apple-id "$APPLE_NOTARIZE_USERNAME" \
142
135
--password "$APPLE_NOTARIZE_PASSWORD" \
143
136
--team-id "$APPLE_DEVELOPMENT_TEAM" \
144
- --wait --verbose
137
+ --wait
145
138
# Staple the notarization ticket to the package
146
139
xcrun stapler staple package/liblsl-${LSL_VERSION}-Darwin-universal.pkg
147
140
@@ -191,7 +184,8 @@ jobs:
191
184
192
185
- name : Unzip macOS Framework
193
186
run : |
194
- unzip build-macOS-latest/lsl.framework.zip -d build-macOS-latest/Frameworks
187
+ unzip build-macOS-latest/install/Frameworks/lsl.framework.zip -d build-macOS-latest/Frameworks
188
+ # unpackage build-macOS-latest/package/liblsl-$LSL_VERSION-Darwin-universal.pkg
195
189
196
190
- name : Unzip iOS Framework
197
191
run : |
0 commit comments