-
Notifications
You must be signed in to change notification settings - Fork 445
279 lines (231 loc) · 7.74 KB
/
flutter-linux.yaml
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
name: flutter-linux
on:
push:
branches:
- flutter
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
workflow_dispatch:
concurrency:
group: flutter-linux-${{ github.ref }}
cancel-in-progress: true
# See https://github.com/actions/checkout/issues/1590#issuecomment-2207052044
# and
# https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
jobs:
tts:
name: tts ${{ matrix.index }}/${{ matrix.total }}
runs-on: ${{ matrix.os }}
container: ubuntu:18.04
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
total: ["20"]
index: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install deps
shell: bash
run: |
apt-get update -y
apt-get install -y bc curl git
- name: Show files
shell: bash
run: |
git config --global --add safe.directory /__w/sherpa-onnx/sherpa-onnx
ls -lha
git init
git add .
git config user.name "foo"
git config user.email "[email protected]"
git commit -m "test"
- name: Generate tts script
uses: addnab/docker-run-action@v3
with:
image: quay.io/pypa/manylinux2014_x86_64
options: |
--volume ${{ github.workspace }}/:/home/runner/work/sherpa-onnx/sherpa-onnx
shell: bash
run: |
uname -a
gcc --version
cmake --version
cat /etc/*release
id
pwd
find /opt -name "python*"
export PATH=/opt/_internal/cpython-3.8.19/bin:$PATH
python3 --version
python3 -m pip install --upgrade pip jinja2 iso639-lang
total=${{ matrix.total }}
index=${{ matrix.index }}
cd /home/runner/work/sherpa-onnx/sherpa-onnx
cd scripts/flutter
ls -lh
echo "---"
python3 ./generate-tts.py --total $total --index $index
chmod +x *.sh
ls -lh
# Ubuntu 18.04 uses cmake 3.10 by default, but we need cmake >= 3.11
- name: Install cmake
shell: bash
run: |
# see https://askubuntu.com/questions/355565/how-do-i-install-the-latest-version-of-cmake-from-the-command-line
version=3.28
build=1
## don't modify from here
limit=3.20
result=$(echo "$version >= $limit" | bc -l)
os=$([ "$result" == 1 ] && echo "linux" || echo "Linux")
mkdir ~/temp
cd ~/temp
curl -SL -O https://cmake.org/files/v$version/cmake-$version.$build-$os-x86_64.sh
mkdir /opt/cmake
sh cmake-$version.$build-$os-x86_64.sh --skip-license --prefix=/opt/cmake
ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
echo "/opt/cmake/bin" >> $GITHUB_PATH
- name: Display cmake version
shell: bash
run: |
cmake --version
which cmake
- name: Install deps
shell: bash
run: |
apt-get update -y
apt-get install -y build-essential jq git python3-pip
apt-get install -y curl
apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libunwind-dev
- name: Show files
shell: bash
run: |
echo "pwd: $PWD"
ls -lh
echo "---"
ls -lh scripts/flutter
- name: Install Python dependencies
shell: bash
run: |
python3 -m pip install --upgrade pip jinja2 iso639-lang dataclasses
- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v3
with:
channel: stable
version: latest
- name: Install ninja
shell: bash
run: |
apt-get install -y ninja-build
- name: Display ninja version
shell: bash
run: |
ninja --version
ninja --help || true
which ninja
- name: Display PWD
shell: bash
run: |
echo "pwd: $PWD"
ls -lh
- name: Display machine info
shell: bash
run: |
uname -a
- name: Display flutter info
shell: bash
run: |
which flutter
which dart
flutter --version
git config --global --add safe.directory /__t/flutter-Linux-*/flutter || true
flutter --version
dart --version
flutter doctor
- name: Install libgtk-3-dev
shell: bash
run: |
apt install -y libgtk-3-dev tree clang pkg-config
- name: Display flutter info (2)
shell: bash
run: |
which flutter
which dart
flutter --version
dart --version
flutter doctor
cd ..
- name: Build flutter
shell: bash
run: |
cd scripts/flutter
total=${{ matrix.total }}
index=${{ matrix.index }}
./generate-tts.py --total $total --index $index
chmod +x *.sh
./build-linux-tts.sh
cd ../../
ls -lh *.tar.bz2
- name: Display generated files
shell: bash
run: |
ls -lh *.tar.bz2
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-${{ matrix.total }}-${{ matrix.index }}
path: ./*.tar.bz2
tts_upload:
needs: [tts]
name: tts upload ${{ matrix.index }}/${{ matrix.total }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
total: ["20"]
index: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19"]
# total: ["1"]
# index: ["0"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Retrieve artifact from ubuntu-latest
uses: actions/download-artifact@v3
with:
name: ${{ matrix.os }}-${{ matrix.total }}-${{ matrix.index }}
path: /tmp/files/
- name: Publish to huggingface
if: (github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa' || github.repository_owner == 'csu-fangjun') && ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') || contains(github.ref, 'refs/tags/'))
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
uses: nick-fields/retry@v3
with:
max_attempts: 20
timeout_seconds: 200
shell: bash
command: |
git config --global user.email "[email protected]"
git config --global user.name "Fangjun Kuang"
rm -rf huggingface
export GIT_LFS_SKIP_SMUDGE=1
export GIT_CLONE_PROTECTION_ACTIVE=false
SHERPA_ONNX_VERSION=$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2)
echo "SHERPA_ONNX_VERSION $SHERPA_ONNX_VERSION"
git clone https://huggingface.co/csukuangfj/sherpa-onnx-flutter huggingface
cd huggingface
git fetch
git pull
git merge -m "merge remote" --ff origin main
dst=flutter/tts/linux/$SHERPA_ONNX_VERSION
mkdir -p $dst
cp -v /tmp/files/*.tar.bz2 $dst
git status
git lfs track "*.bz2"
git add .
git commit -m "add more files"
git push https://csukuangfj:[email protected]/csukuangfj/sherpa-onnx-flutter main