generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 479
510 lines (426 loc) · 14.6 KB
/
compose-release.yml
File metadata and controls
510 lines (426 loc) · 14.6 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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# GitHub Actions Workflow for testing mpp-ui releases
# Builds Android APK, Desktop packages for multiple platforms, and mpp-server JAR
# Triggered by tags starting with 'compose-'
name: MPP Release
on:
release:
types: [prereleased, released]
workflow_dispatch:
inputs:
version:
description: 'Version to build'
required: true
default: '1.0.0-test'
jobs:
# Build mpp-server JAR
build-server:
name: Build Server JAR
runs-on: ubuntu-latest
# Only run for compose-* releases or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# Remove large packages to free ~14GB
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build mpp-server fat JAR
run: ./gradlew :mpp-server:fatJar --no-daemon
- name: Upload Server JAR
uses: actions/upload-artifact@v4
with:
name: server-jar
path: mpp-server/build/libs/*-all.jar
- name: Clean build cache to save space (Linux only)
run: |
./gradlew :mpp-server:clean
rm -rf ~/.gradle/caches/modules-2/files-2.1
df -h
# Build Android APK
build-android:
name: Build Android APK
runs-on: ubuntu-latest
# Only run for compose-* releases or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: false # Keep Android SDK as we need it
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Android Debug APK
run: ./gradlew :mpp-ui:assembleDebug --no-daemon
- name: Build Android Release APK
run: ./gradlew :mpp-ui:assembleRelease --no-daemon
- name: Upload Android APKs
uses: actions/upload-artifact@v4
with:
name: android-apks
path: |
mpp-ui/build/outputs/apk/debug/*.apk
mpp-ui/build/outputs/apk/release/*.apk
- name: Clean build cache to save space (Linux only)
run: |
./gradlew :mpp-ui:clean
rm -rf ~/.gradle/caches/modules-2/files-2.1
rm -rf ~/.gradle/caches/transforms-*
df -h
# Build iOS App
build-ios:
name: Build iOS App
runs-on: macos-latest
continue-on-error: true
# Only run for compose-* releases or manual dispatch
if: false # disabled temporarily
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Kotlin Frameworks for iOS
run: |
./gradlew :mpp-core:linkDebugFrameworkIosSimulatorArm64 --no-daemon
./gradlew :mpp-ui:linkDebugFrameworkIosSimulatorArm64 --no-daemon
- name: Install CocoaPods
run: sudo gem install cocoapods
- name: Install CocoaPods dependencies
working-directory: mpp-ios
run: pod install
- name: Build iOS App (Simulator)
working-directory: mpp-ios
run: |
xcodebuild -workspace AutoDevApp.xcworkspace \
-scheme AutoDevApp \
-configuration Release \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 15 Pro' \
-archivePath $PWD/build/AutoDevApp.xcarchive \
archive
- name: Export IPA
working-directory: mpp-ios
run: |
# Create export options plist
cat > ExportOptions.plist << EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>development</string>
<key>destination</key>
<string>export</string>
</dict>
</plist>
EOF
xcodebuild -exportArchive \
-archivePath $PWD/build/AutoDevApp.xcarchive \
-exportPath $PWD/build/ipa \
-exportOptionsPlist ExportOptions.plist
- name: Upload iOS App
uses: actions/upload-artifact@v4
with:
name: ios-app
path: mpp-ios/build/ipa/*.ipa
- name: Clean build cache
run: |
./gradlew :mpp-core:clean :mpp-ui:clean
rm -rf ~/.gradle/caches/modules-2/files-2.1
rm -rf mpp-ios/build
df -h
# Build Desktop packages for multiple platforms
build-desktop:
name: Build Desktop (${{ matrix.os }})
runs-on: ${{ matrix.os }}
# Only run for compose-* releases or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
task: packageDeb
artifact: linux-deb
path: mpp-ui/build/compose/binaries/main/deb/*.deb
- os: windows-latest
task: packageMsi
artifact: windows-msi
path: mpp-ui/build/compose/binaries/main/msi/*.msi
- os: macos-latest
task: packageDmg
artifact: macos-dmg
path: mpp-ui/build/compose/binaries/main/dmg/*.dmg
steps:
- name: Free Disk Space (Ubuntu)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew (Unix)
if: runner.os != 'Windows'
run: chmod +x gradlew
- name: Build Desktop package
run: ./gradlew :mpp-ui:${{ matrix.task }} --no-daemon
- name: Upload Desktop package
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: ${{ matrix.path }}
- name: Clean build cache to save space (Unix)
if: runner.os != 'Windows'
run: |
./gradlew :mpp-ui:clean
rm -rf ~/.gradle/caches/modules-2/files-2.1
df -h
- name: Clean build cache to save space (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
./gradlew :mpp-ui:clean
if (Test-Path "$env:USERPROFILE\.gradle\caches\modules-2\files-2.1") {
Remove-Item -Recurse -Force "$env:USERPROFILE\.gradle\caches\modules-2\files-2.1"
}
# Build JetBrains IDE Plugin
build-idea-plugin:
name: Build JetBrains Plugin
runs-on: ubuntu-latest
# Only run for compose-* releases or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build JetBrains Plugin
working-directory: mpp-idea
run: ../gradlew buildPlugin --no-daemon
- name: Upload JetBrains Plugin
uses: actions/upload-artifact@v4
with:
name: jetbrains-plugin
path: mpp-idea/build/distributions/*.zip
- name: Clean build cache to save space
run: |
./gradlew :mpp-idea:clean
rm -rf ~/.gradle/caches/modules-2/files-2.1
df -h
# Build VS Code Extension
build-vscode-extension:
name: Build VS Code Extension
runs-on: ubuntu-latest
# Only run for compose-* releases or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build mpp-core JS library
run: ./gradlew :mpp-core:jsNodeProductionLibraryDistribution --no-daemon
- name: Install mpp-core dependencies
working-directory: mpp-core/build/dist/js/productionLibrary
run: npm install --ignore-scripts
- name: Install VS Code extension dependencies
working-directory: mpp-vscode
run: npm install
- name: Install webview dependencies
working-directory: mpp-vscode/webview
run: npm install
- name: Build VS Code extension
working-directory: mpp-vscode
run: npm run build
- name: Package VS Code extension
working-directory: mpp-vscode
run: npx vsce package --no-dependencies
- name: Upload VS Code Extension
uses: actions/upload-artifact@v4
with:
name: vscode-extension
path: mpp-vscode/*.vsix
- name: Clean build cache to save space
run: |
rm -rf mpp-vscode/node_modules
rm -rf mpp-vscode/webview/node_modules
rm -rf mpp-core/build
df -h
# Create release with all artifacts
create-release:
name: Create Release
needs: [build-server, build-android, build-desktop, build-idea-plugin, build-vscode-extension]
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
# Only run for compose-* tags or manual dispatch
if: startsWith(github.ref, 'refs/tags/compose-') || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
continue-on-error: true
- name: Display structure of downloaded files
run: |
if [ -d "artifacts" ]; then
ls -laR artifacts/
else
echo "No artifacts directory found"
mkdir -p artifacts
fi
- name: Create Release
uses: softprops/action-gh-release@v2
with:
name: "AutoDev Xiuper ${{ github.ref_name }}"
body: |
## AutoDev Xiuper - Multiplatform Release
> One Platform. All Phases. Every Device.
This release includes builds for all supported platforms:
### 🖥️ Server
- `mpp-server-*-all.jar` - Ready to run with `java -jar`
### 📱 Mobile
- **Android**: Debug APK, Release APK
### 💻 Desktop
- **Linux**: `.deb` package
- **Windows**: `.msi` installer
- **macOS**: `.dmg` image
### 🔌 IDE Plugins
- **JetBrains**: `.zip` plugin (IntelliJ IDEA, PyCharm, WebStorm, etc.)
- **VS Code**: `.vsix` extension
### 📦 Installation
**Desktop**: Download the appropriate package for your platform and install.
**JetBrains IDE**:
```
Settings → Plugins → ⚙️ → Install Plugin from Disk → Select .zip file
```
**VS Code**:
```bash
code --install-extension autodev-*.vsix
```
**CLI**:
```bash
npm install -g @xiuper/cli
```
---
📖 Documentation: https://xiuper.com
🐛 Issues: https://github.com/phodal/auto-dev/issues
files: |
artifacts/**/*
draft: false
prerelease: true
fail_on_unmatched_files: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}