-
-
Notifications
You must be signed in to change notification settings - Fork 118
160 lines (146 loc) · 4.17 KB
/
example_build.yml
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
name: example build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
nodeVersion: "16"
cmakeVersion: "3.26.3"
flutterVersion: "3.24.0"
jobs:
build_windows-app_in_windows:
runs-on: windows-2022
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: ${{ env.nodeVersion }}
- uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.cmakeVersion }}
- run: npm i
- name: Build windows dll
run: npm run build:bridge:windows:release
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutterVersion }}
- run: flutter doctor -v
- name: windows app build
run: |
cd webf/
flutter pub get
cd example/
flutter build windows --release
build_android-app_in_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
# Set up the bridge compilation environment
- uses: actions/setup-node@v2
with:
node-version: ${{ env.nodeVersion }}
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.cmakeVersion }}
- run: npm i
- run: npm run build:bridge:android:release
# Install Flutter SDK
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutterVersion }}
- run: flutter doctor -v
- name: android app build
run: |
cd webf/
flutter pub get
cd example/
flutter build apk --release
build_ios-app_in_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: ${{ env.nodeVersion }}
- uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.cmakeVersion }}
- run: npm i
- run: npm run build:bridge:ios:release
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutterVersion }}
- run: flutter doctor -v
- name: ios app build
run: |
cd webf/
flutter pub get
cd example/
flutter build ios --release --no-codesign
build_macos-app_in_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: ${{ env.nodeVersion }}
- uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.cmakeVersion }}
- run: npm i
- run: npm run build:bridge:macos:release
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutterVersion }}
- run: flutter config --enable-macos-desktop
- run: flutter doctor -v
- name: macos app build
run: |
cd webf/
flutter pub get
cd example/
flutter build macos --release
build_linux-app_in_ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: ${{ env.nodeVersion }}
- uses: jwlawson/[email protected]
with:
cmake-version: ${{ env.cmakeVersion }}
- run: |
sudo apt-get update
sudo apt-get install chrpath ninja-build pkg-config libgtk-3-dev -y
- run: npm i
- run: npm run build:bridge:linux:release
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutterVersion }}
- run: flutter config --enable-linux-desktop
- run: flutter doctor -v
- name: linux app build
run: |
cd webf/
flutter pub get
cd example/
flutter build linux --release