File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 30
30
jobs :
31
31
build-and-test :
32
32
runs-on : ${{ matrix.runs-on }}
33
- timeout-minutes : 60
33
+ timeout-minutes : 360
34
34
strategy :
35
35
fail-fast : false
36
36
matrix :
@@ -193,14 +193,14 @@ jobs:
193
193
codesign --force --entitlements="/tmp/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime ${{env.PYTHON_FOLDER}}/bin/python
194
194
codesign --force --entitlements="/tmp/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime ${{env.PYTHON_FOLDER}}/bin/python3
195
195
# Code sign all .so files and .dylib files
196
-
197
- find ${{env.PYTHON_FOLDER}} -type f \( -name "*.so" \) -exec codesign --deep --force --entitlements="/tmp/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" {} \;
198
- find ${{env.PYTHON_FOLDER}} -type f \( -name "*.dylib" \) -exec codesign --deep --force -s "${{ secrets.DEVELOPER_ID }}" {} \;
196
+
197
+ find ${{env.PYTHON_FOLDER}} -type f \( -name "*.so" -o -name "*.dylib" \) -exec codesign --force --entitlements="/tmp/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime {} \;
199
198
200
199
curl -sSfL https://raw.githubusercontent.com/anchore/quill/main/install.sh | sudo sh -s -- -b /usr/local/bin
201
200
# Notarize the binary
202
201
quill notarize ${{env.PYTHON_FOLDER}}/bin/python
203
202
quill notarize ${{env.PYTHON_FOLDER}}/bin/python3
203
+ find ${{env.PYTHON_FOLDER}} -type f \( -name "*.so" -o -name "*.dylib" \) -exec quill notarize {} \;
204
204
env :
205
205
QUILL_NOTARY_KEY_ID : ${{ secrets.NOTARY_KEY_ID }}
206
206
QUILL_NOTARY_ISSUER : ${{ secrets.NOTARY_ISSUER }}
You can’t perform that action at this time.
0 commit comments