Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 0a0b8b4

Browse files
Test CI window
1 parent f822179 commit 0a0b8b4

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

.github/workflows/python-package.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
if: runner.os == 'windows'
8383
shell: pwsh
8484
run: |
85-
${{env.USERPROFILE}}\\Miniconda3\\Scripts\\conda.exe init
85+
$env:USERPROFILE\\Miniconda3\\Scripts\\conda.exe init
8686
conda create -y -n ${{env.MODEL_NAME}} python=3.11
8787
8888
conda activate ${{env.MODEL_NAME}}
@@ -149,37 +149,37 @@ jobs:
149149
name: ${{env.MODEL_NAME}}-${{ matrix.os }}-${{ matrix.name }}
150150
path: ${{env.PYTHON_FOLDER}}
151151

152-
codesign:
153-
runs-on: macos-latest
154-
needs: build-and-test
155-
steps:
156-
- name: checkout
157-
uses: actions/checkout@v3
158-
- uses: apple-actions/import-codesign-certs@v2
159-
continue-on-error: true
160-
with:
161-
p12-file-base64: ${{ secrets.CODE_SIGN_P12_BASE64 }}
162-
p12-password: ${{ secrets.CODE_SIGN_P12_PASSWORD }}
163-
- name: Download Artifact
164-
uses: actions/download-artifact@v4
165-
with:
166-
name: ${{env.MODEL_NAME}}-mac-amd64
167-
- name: Download Artifact
168-
uses: actions/download-artifact@v4
169-
with:
170-
name: ${{env.MODEL_NAME}}-mac-amd64
152+
# codesign:
153+
# runs-on: macos-latest
154+
# needs: build-and-test
155+
# steps:
156+
# - name: checkout
157+
# uses: actions/checkout@v3
158+
# - uses: apple-actions/import-codesign-certs@v2
159+
# continue-on-error: true
160+
# with:
161+
# p12-file-base64: ${{ secrets.CODE_SIGN_P12_BASE64 }}
162+
# p12-password: ${{ secrets.CODE_SIGN_P12_PASSWORD }}
163+
# - name: Download Artifact
164+
# uses: actions/download-artifact@v4
165+
# with:
166+
# name: ${{env.MODEL_NAME}}-mac-amd64
167+
# - name: Download Artifact
168+
# uses: actions/download-artifact@v4
169+
# with:
170+
# name: ${{env.MODEL_NAME}}-mac-amd64
171171

172-
- run: |
173-
find "${{env.MODEL_NAME}}-mac-amd64" \( -type f -perm +111 -o -name "*.node" \) -exec codesign --force --entitlements="./engine/templates/macos/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime {} \;
174-
find "${{env.MODEL_NAME}}-mac-arm64" \( -type f -perm +111 -o -name "*.node" \) -exec codesign --force --entitlements="./engine/templates/macos/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime {} \;
172+
# - run: |
173+
# find "${{env.MODEL_NAME}}-mac-amd64" \( -type f -perm +111 -o -name "*.node" \) -exec codesign --force --entitlements="./engine/templates/macos/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime {} \;
174+
# find "${{env.MODEL_NAME}}-mac-arm64" \( -type f -perm +111 -o -name "*.node" \) -exec codesign --force --entitlements="./engine/templates/macos/entitlements.plist" -s "${{ secrets.DEVELOPER_ID }}" --options=runtime {} \;
175175

176-
- name: Upload Artifact
177-
uses: actions/upload-artifact@v4
178-
with:
179-
name: ${{env.MODEL_NAME}}-mac-amd64
180-
path: ${{env.MODEL_NAME}}-mac-amd64
181-
- name: Upload Artifact
182-
uses: actions/upload-artifact@v4
183-
with:
184-
name: ${{env.MODEL_NAME}}-mac-arm64
185-
path: ${{env.MODEL_NAME}}-mac-arm64
176+
# - name: Upload Artifact
177+
# uses: actions/upload-artifact@v4
178+
# with:
179+
# name: ${{env.MODEL_NAME}}-mac-amd64
180+
# path: ${{env.MODEL_NAME}}-mac-amd64
181+
# - name: Upload Artifact
182+
# uses: actions/upload-artifact@v4
183+
# with:
184+
# name: ${{env.MODEL_NAME}}-mac-arm64
185+
# path: ${{env.MODEL_NAME}}-mac-arm64

0 commit comments

Comments
 (0)