-
Notifications
You must be signed in to change notification settings - Fork 0
207 lines (170 loc) · 5.24 KB
/
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
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
name: Build Electron Application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Yarn and Node-GYP
run: |
npm install -g yarn
npm install -g node-gyp
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Display yarn and Node.js versions
run: |
node --version
yarn --version
- name: List installed packages
run: yarn list --depth=0
- name: Download GGML models
run: |
./whisper.cpp/models/download-ggml-model.cmd base
./whisper.cpp/models/download-ggml-model.cmd base.en
- name: Build Electron app
run: yarn make
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: windows-app-x64
path: |
out/make/**/*.exe
out/make/**/*.msi
out/make/**/*.zip
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: forge-logs
path: out/forge.log
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [x64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
architecture: ${{ matrix.arch }}
- name: Install Yarn and Node-GYP
run: |
npm install -g yarn
npm install -g node-gyp
- name: Install dependencies without Native Addon Builds (ARM64)
if: matrix.arch == 'ARM64'
run: yarn install --frozen-lockfile --ignore-scripts
- name: Install dependencies with Native Addons Builds (X64)
if: matrix.arch == 'X64'
run: yarn install --frozen-lockfile
- name: Build Native Addons for ARM64
if: matrix.arch == 'ARM64'
run: |
node-gyp configure --arch=arm64
node-gyp build
- name: Display Yarn and Node.js versions
run: |
node --version
yarn --version
- name: List installed packages
run: yarn list --depth=0
- name: Download GGML models
run: |
./whisper.cpp/models/download-ggml-model.sh base
./whisper.cpp/models/download-ggml-model.sh base.en
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev
- name: Build Electron Application
env:
ELECTRON_ARCH: ${{ matrix.arch }}
run: yarn make --arch=${{ matrix.arch }}
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: linux-app-${{ matrix.arch }}-${{ github.run_id }}
path: |
out/make/**/*.deb
out/make/**/*.rpm
out/make/**/*.zip
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: forge-logs-linux-${{ matrix.arch }}-${{ github.run_id }}
path: out/forge.log
build-macos:
runs-on: macos-latest
strategy:
matrix:
arch: [x64, arm64]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install distutils
run: |
python -m pip install --upgrade pip
pip install setuptools
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Yarn and Node-GYP
run: |
npm install -g yarn
npm install -g node-gyp
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Display Yarn, Node.js and Python versions
run: |
node --version
yarn --version
python --version
pip list
- name: List installed packages
run: yarn list --depth=0
- name: Downlaod GGML models
run: |
./whisper.cpp/models/download-ggml-model.sh base
./whisper.cpp/models/download-ggml-model.sh base.en
- name: Build Electron Application
env:
ELECTRON_ARCH: ${{ matrix.arch }}
run: yarn make --arch=${{ matrix.arch }}
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: macos-app-${{ matrix.arch }}-${{ github.run_id }}
path: |
out/make/**/*.dmg
out/make/**/*.pkg
out/make/**/*.zip
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: forge-logs-macos-${{ matrix.arch }}-${{ github.run_id }}
path: out/forge.log