forked from eigent-ai/eigent
-
Notifications
You must be signed in to change notification settings - Fork 0
356 lines (313 loc) · 12.9 KB
/
Copy pathbuild-view.yml
File metadata and controls
356 lines (313 loc) · 12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
name: Build-View
on:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
matrix:
include:
- os: macos-latest
arch: arm64
artifact_name: macos-arm64
- os: macos-15-intel
arch: x64
artifact_name: macos-intel
- os: windows-latest
arch: x64
artifact_name: windows-latest
- os: ubuntu-latest
arch: x64
artifact_name: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
clean: true
# Clean node_modules on self-hosted runner to ensure fresh install
- name: Clean node_modules (self-hosted)
if: contains(matrix.os, 'self-hosted')
run: |
rm -rf node_modules
rm -rf release
- name: Setup Node.js
if: "!contains(matrix.os, 'self-hosted')"
uses: actions/setup-node@v6
with:
node-version: 20
- name: Setup Python
if: "!contains(matrix.os, 'self-hosted')"
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install Python Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install uv
- name: Install bun
run: npm install -g bun
- name: Install Dependencies
run: npm install
# Verify Electron installation on macOS
- name: Verify Electron Installation (macOS)
if: runner.os == 'macOS'
run: |
echo "Checking Electron installation..."
ls -la node_modules/electron/dist/ || echo "Electron dist not found"
if [ -d "node_modules/electron/dist/Electron.app" ]; then
echo "✅ Electron.app found"
ls -la "node_modules/electron/dist/Electron.app/Contents/Frameworks/" | head -5
else
echo "❌ Electron.app NOT found - this will cause build failure"
exit 1
fi
# Install libfuse2 for Linux AppImage builds
- name: Install libfuse2 (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libfuse2
# Install LLVM 20 for macOS Intel - llvmlite 0.46.0 only supports LLVM 20 (not 21)
- name: Install LLVM 20 (macOS Intel)
if: runner.os == 'macOS' && matrix.arch == 'x64'
run: |
brew install llvm@20
echo "LLVM_DIR=$(brew --prefix llvm@20)/lib/cmake/llvm" >> $GITHUB_ENV
echo "CMAKE_PREFIX_PATH=$(brew --prefix llvm@20)/lib/cmake/llvm" >> $GITHUB_ENV
# Step for macOS builds with signing
- name: Build Release Files (macOS with signing)
if: runner.os == 'macOS'
timeout-minutes: 90
run: |
# Set file descriptor limit to system maximum (hard limit) to prevent EMFILE during signing
HARD=$(ulimit -Hn 2>/dev/null)
if [ -n "$HARD" ] && [ "$HARD" != "unlimited" ]; then
ulimit -n "$HARD" 2>/dev/null || true
fi
ulimit -n 65536 2>/dev/null || ulimit -n 10240 2>/dev/null || true
echo "File descriptor limit: $(ulimit -n) (hard: $(ulimit -Hn 2>/dev/null || echo 'N/A'))"
npm run prebuild
npx electron-builder --mac --${{ matrix.arch }} --publish never
env:
CSC_LINK: ${{ secrets.CERT_P12 }}
CSC_KEY_PASSWORD: ${{ secrets.CERT_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
VITE_BASE_URL: ${{ secrets.VITE_BASE_URL }}
VITE_STACK_PROJECT_ID: ${{ secrets.VITE_STACK_PROJECT_ID }}
VITE_STACK_PUBLISHABLE_CLIENT_KEY: ${{ secrets.VITE_STACK_PUBLISHABLE_CLIENT_KEY }}
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
USE_NPM_INSTALL_BUN: 'true'
# Step for Windows builds without signing
- name: Build Release Files (Windows without signing)
if: runner.os == 'Windows'
timeout-minutes: 90
run: |
npm run prebuild
npx electron-builder --win --${{ matrix.arch }} --publish never
env:
VITE_BASE_URL: ${{ secrets.VITE_BASE_URL }}
VITE_STACK_PROJECT_ID: ${{ secrets.VITE_STACK_PROJECT_ID }}
VITE_STACK_PUBLISHABLE_CLIENT_KEY: ${{ secrets.VITE_STACK_PUBLISHABLE_CLIENT_KEY }}
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
USE_NPM_INSTALL_BUN: 'true'
# Step for Linux builds
- name: Build Release Files (Linux)
if: runner.os == 'Linux'
timeout-minutes: 90
run: |
npm run prebuild
npx electron-builder --linux --${{ matrix.arch }} --publish never
env:
VITE_BASE_URL: ${{ secrets.VITE_BASE_URL }}
VITE_STACK_PROJECT_ID: ${{ secrets.VITE_STACK_PROJECT_ID }}
VITE_STACK_PUBLISHABLE_CLIENT_KEY: ${{ secrets.VITE_STACK_PUBLISHABLE_CLIENT_KEY }}
VITE_STACK_SECRET_SERVER_KEY: ${{ secrets.VITE_STACK_SECRET_SERVER_KEY }}
USE_NPM_INSTALL_BUN: 'true'
# Verify built app contains Electron Framework
- name: Verify Built App (macOS)
if: runner.os == 'macOS'
run: |
echo "Checking built app..."
APP_PATH=$(find release -name "*.app" -type d | head -1)
if [ -n "$APP_PATH" ]; then
echo "Found app at: $APP_PATH"
FRAMEWORKS_PATH="$APP_PATH/Contents/Frameworks"
if [ -d "$FRAMEWORKS_PATH/Electron Framework.framework" ]; then
echo "✅ Electron Framework found"
ls -la "$FRAMEWORKS_PATH/" | head -10
else
echo "❌ Electron Framework NOT found in built app!"
echo "Contents of Frameworks directory:"
ls -la "$FRAMEWORKS_PATH/" 2>/dev/null || echo "Frameworks directory does not exist"
exit 1
fi
else
echo "No .app found in release directory"
ls -la release/
fi
- name: Upload Artifact (macOS - dmg only)
if: runner.os == 'macOS'
uses: actions/upload-artifact@v6
with:
name: release-${{ matrix.artifact_name }}-${{ matrix.arch }}
path: |
release/*.dmg
retention-days: 5
- name: Upload Artifact (Windows - exe only)
if: runner.os == 'Windows'
uses: actions/upload-artifact@v6
with:
name: release-${{ matrix.artifact_name }}-${{ matrix.arch }}
path: |
release/*.exe
retention-days: 5
- name: Upload Artifact (Linux - AppImage only)
if: runner.os == 'Linux'
uses: actions/upload-artifact@v6
with:
name: release-${{ matrix.artifact_name }}-${{ matrix.arch }}
path: |
release/*.AppImage
retention-days: 5
merge-release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Create directories
run: |
mkdir -p release/mac-arm64 release/mac-intel release/win-x64 release/linux-x64
- name: Download mac-arm64 artifact
uses: actions/download-artifact@v7
with:
name: release-macos-arm64-arm64
path: temp-mac-arm64
- name: Download mac-intel artifact
uses: actions/download-artifact@v7
with:
name: release-macos-intel-x64
path: temp-mac-intel
- name: Download win-x64 artifact
uses: actions/download-artifact@v7
with:
name: release-windows-latest-x64
path: temp-win-x64
- name: Download linux-x64 artifact
uses: actions/download-artifact@v7
with:
name: release-ubuntu-latest-x64
path: temp-linux-x64
# Move only dmg files for macOS, exe files for Windows, and AppImage for Linux
- name: Move files to clean folders
shell: bash
run: |
# mac-arm64 - only move dmg files
if [ -d "temp-mac-arm64/release" ]; then
find temp-mac-arm64/release -name "*.dmg" -exec mv {} release/mac-arm64/ \; || true
else
find temp-mac-arm64 -name "*.dmg" -exec mv {} release/mac-arm64/ \; || true
fi
# mac-intel - only move dmg files
if [ -d "temp-mac-intel/release" ]; then
find temp-mac-intel/release -name "*.dmg" -exec mv {} release/mac-intel/ \; || true
else
find temp-mac-intel -name "*.dmg" -exec mv {} release/mac-intel/ \; || true
fi
# win-x64 - only move exe files
if [ -d "temp-win-x64/release" ]; then
find temp-win-x64/release -name "*.exe" -exec mv {} release/win-x64/ \; || true
else
find temp-win-x64 -name "*.exe" -exec mv {} release/win-x64/ \; || true
fi
# linux-x64 - only move AppImage files
if [ -d "temp-linux-x64/release" ]; then
find temp-linux-x64/release -name "*.AppImage" -exec mv {} release/linux-x64/ \; || true
else
find temp-linux-x64 -name "*.AppImage" -exec mv {} release/linux-x64/ \; || true
fi
# Extract version for test builds
- name: Extract version
id: version
run: |
# Create a version using timestamp for test builds
VERSION="test-$(date +%Y%m%d-%H%M%S)"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Extracted version for test build: $VERSION"
# Configure AWS credentials (skipped when AWS secrets are not configured)
- name: Configure AWS credentials
id: aws-check
if: env.AWS_ACCESS_KEY_ID != ''
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
# Upload to S3 - test directory
- name: Upload to S3 (test build)
if: steps.aws-check.outcome == 'success'
run: |
VERSION="${{ steps.version.outputs.version }}"
BUCKET="${{ secrets.AWS_S3_BUCKET }}"
echo "Uploading test build $VERSION to S3 bucket: $BUCKET"
declare -a targets=(
"release/mac-arm64 mac-arm64"
"release/mac-intel mac-intel"
"release/win-x64 win-x64"
"release/linux-x64 linux-x64"
)
for t in "${targets[@]}"; do
src_dir="${t%% *}"
path_suffix="${t##* }"
if [ -d "$src_dir" ] && [ "$(ls -A "$src_dir")" ]; then
echo "Uploading $path_suffix files..."
aws s3 sync "$src_dir/" "s3://$BUCKET/test-builds/$VERSION/$path_suffix/" \
--content-type "binary/octet-stream" \
--metadata-directive REPLACE \
--cache-control "public, max-age=300"
fi
done
echo "Test build $VERSION uploaded successfully"
# Generate download URLs
- name: Generate download URLs
if: steps.aws-check.outcome == 'success'
run: |
VERSION="${{ steps.version.outputs.version }}"
BUCKET="${{ secrets.AWS_S3_BUCKET }}"
REGION="${{ secrets.AWS_REGION }}"
# Determine S3 endpoint based on region
if [[ "$REGION" == cn-* ]]; then
ENDPOINT="s3.$REGION.amazonaws.com.cn"
else
ENDPOINT="s3.$REGION.amazonaws.com"
fi
echo "================================"
echo "Test Build Download URLs"
echo "Build ID: $VERSION"
echo "================================"
echo ""
# Check which platforms exist and show URLs
if [ -d "release/mac-arm64" ] && [ "$(ls -A release/mac-arm64)" ]; then
echo "macOS (ARM64): https://$BUCKET.$ENDPOINT/test-builds/$VERSION/mac-arm64/"
fi
if [ -d "release/mac-intel" ] && [ "$(ls -A release/mac-intel)" ]; then
echo "macOS (Intel): https://$BUCKET.$ENDPOINT/test-builds/$VERSION/mac-intel/"
fi
if [ -d "release/win-x64" ] && [ "$(ls -A release/win-x64)" ]; then
echo "Windows (x64): https://$BUCKET.$ENDPOINT/test-builds/$VERSION/win-x64/"
fi
if [ -d "release/linux-x64" ] && [ "$(ls -A release/linux-x64)" ]; then
echo "Linux (x64): https://$BUCKET.$ENDPOINT/test-builds/$VERSION/linux-x64/"
fi
echo ""
echo "⚠️ Note: Test builds are stored in 'test-builds/' directory"
echo "⚠️ Remember to delete old test builds to save storage costs"
echo ""
echo "To delete this test build:"
echo "aws s3 rm s3://$BUCKET/test-builds/$VERSION/ --recursive --region $REGION"
echo "================================"