mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 03:30:06 +00:00
chore: update build yml file
This commit is contained in:
parent
fa9415b4d0
commit
1cb9d8a678
3 changed files with 26 additions and 2 deletions
2
.github/workflows/build-view.yml
vendored
2
.github/workflows/build-view.yml
vendored
|
|
@ -89,7 +89,7 @@ jobs:
|
|||
# Increase file descriptor limit to prevent EMFILE errors during signing
|
||||
# This is needed because electron-builder signs all files recursively,
|
||||
# and Python venvs contain thousands of files
|
||||
ulimit -n 10240
|
||||
ulimit -n 65536 || ulimit -n 10240
|
||||
echo "File descriptor limit set to: $(ulimit -n)"
|
||||
npm run build -- --arch ${{ matrix.arch }}
|
||||
env:
|
||||
|
|
|
|||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -92,7 +92,11 @@ jobs:
|
|||
# Step for macOS builds with signing
|
||||
- name: Build Release Files (macOS with signing)
|
||||
if: runner.os == 'macOS'
|
||||
run: npm run build -- --arch ${{ matrix.arch }}
|
||||
run: |
|
||||
# Increase file descriptor limit to prevent EMFILE errors during signing
|
||||
ulimit -n 65536 || ulimit -n 10240
|
||||
echo "File descriptor limit set to: $(ulimit -n)"
|
||||
npm run build -- --arch ${{ matrix.arch }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CSC_LINK: ${{ secrets.CERT_P12 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue