Skip to content

Commit

Permalink
add CI for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed May 24, 2024
1 parent 4b54cdf commit c1af2de
Show file tree
Hide file tree
Showing 3 changed files with 222 additions and 14 deletions.
206 changes: 206 additions & 0 deletions .github/workflows/flutter-linux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
name: flutter-linux

on:
push:
branches:
- flutter
tags:
- '*'
paths:
- '.github/workflows/flutter-linux.yaml'
- 'CMakeLists.txt'
- 'cmake/**'
- 'sherpa-onnx/csrc/*'
- 'sherpa-onnx/c-api/*'
- 'sherpa-onnx/flutter/**'
pull_request:
branches:
- master
paths:
- '.github/workflows/flutter-linux.yaml'
- 'CMakeLists.txt'
- 'cmake/**'
- 'sherpa-onnx/csrc/*'
- 'sherpa-onnx/c-api/*'
- 'sherpa-onnx/flutter/**'

workflow_dispatch:

concurrency:
group: flutter-linux-${{ github.ref }}
cancel-in-progress: true

jobs:
flutter_linux:
name: linux
runs-on: ${{ matrix.os }}
container: ubuntu:18.04
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install deps
shell: bash
run: |
apt-get update -y
apt-get install -y build-essential jq git cmake
apt-get install -y curl
- 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
mkdir -p /__t/flutter-Linux-3.22.1-X64/flutter
git config --global --add safe.directory /__t/flutter-Linux-3.22.1-X64/flutter
flutter --version
dart --version
flutter doctor
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
- name: Build sherpa-onnx
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
cd /home/runner/work/sherpa-onnx/sherpa-onnx
mkdir build
cd build
cmake \
-D BUILD_SHARED_LIBS=ON \
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \
-DBUILD_ESPEAK_NG_EXE=OFF \
-DSHERPA_ONNX_ENABLE_BINARY=OFF \
-DCMAKE_INSTALL_PREFIX=./install \
..
make -j2
make install
- name: Copy libs
shell: bash
run: |
cp -v build/install/lib/lib* ./sherpa-onnx/flutter/linux/
echo "--------------------"
ls -lh ./sherpa-onnx/flutter/linux/
- name: Download model files
shell: bash
run: |
cd sherpa-onnx/flutter
cd example/assets
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/silero_vad.onnx
- name: Build flutter
shell: bash
run: |
d=$PWD
pushd sherpa-onnx/flutter
dart pub get
cd example
flutter build linux
ls -lh build/linux/x64/release/bundle/sherpa_onnx
file build/linux/x64/release/bundle/sherpa_onnx
tree build/linux/x64/release/bundle/
cd build/linux/x64/release/
dst=flutter_sherpa_onnx_linux_x64
mv bundle $dst
pushd $dst/lib
ls -lh
mv -v libonnxruntime.so libonnxruntime.so.1.17.1
mv -v libpiper_phonemize.so libpiper_phonemize.so.1
popd
tar cjfv $dst.tar.bz2 $dst
ls -lh
mv $dst.tar.bz2 $d
popd
ls -lh $dst.tar.bz2
- uses: actions/upload-artifact@v2
with:
name: flutter-sherpa-onnx-linux-x64
path: ./*.tar.bz2
23 changes: 14 additions & 9 deletions .github/workflows/flutter-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- flutter
- vad-gui-flutter-22
tags:
- '*'
paths:
Expand Down Expand Up @@ -68,6 +67,11 @@ jobs:
run: |
uname -a
- name: Install tree
shell: bash
run: |
brew install tree
- name: Display flutter info
shell: bash
run: |
Expand Down Expand Up @@ -95,7 +99,7 @@ jobs:
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \
-DBUILD_ESPEAK_NG_EXE=OFF \
-DSHERPA_ONNX_ENABLE_BINARY=ON \
-DSHERPA_ONNX_ENABLE_BINARY=OFF \
-DCMAKE_INSTALL_PREFIX=./install \
..
Expand All @@ -108,7 +112,6 @@ jobs:
make -j2
make install
rm -v ./install/lib/libcargs*
rm -v ./install/lib/libonnxruntime.dylib
- name: Copy libs
Expand Down Expand Up @@ -146,19 +149,21 @@ jobs:
echo "FLUTTER_XCODE_ARCHS: $FLUTTER_XCODE_ARCHS"
flutter build macos
pushd build/macos/Build/Products/Release/
app=sherpa_onnx_$${{ matrix.arch }}.app
tar cjfv $app.tar.bz2 ./sherpa_onnx.app
cd build/macos/Build/Products/Release/
tree ./sherpa_onnx.app
app=flutter_sherpa_onnx_macos_${{ matrix.arch }}.app
mv sherpa_onnx.app $app
tar cjfv $app.tar.bz2 $app
ls -lh
mv $app.tar.bz2 $d
popd
popd
ls -lh $app.tar.bz2
- uses: actions/upload-artifact@v4
if: matrix.os == 'macos-latest'
with:
name: flutter-sherpa-onnx-app-macos-${{ matrix.arch }}
path: ./*.app.tar.bz2
path: ./*.tar.bz2
7 changes: 2 additions & 5 deletions .github/workflows/flutter-windows-x64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- flutter
- vad-gui-flutter-2
tags:
- '*'
paths:
Expand Down Expand Up @@ -98,8 +97,6 @@ jobs:
cmake --build . --config Release -- -m:2
cmake --build . --config Release --target install -- -m:2
rm -v ./install/lib/cargs*
- name: Copy libs
shell: bash
run: |
Expand Down Expand Up @@ -130,14 +127,14 @@ jobs:
cd example
flutter build windows
cd build/windows/x64/runner/Release/
cd build/windows/x64/runner/
dst=flutter_sherpa_onnx_windows_x64
mv Release $dst
tar cjfv $dst.tar.bz2 ./$dst
ls -lh
mv $dst.tar.bz2 $d
mv $dst.tar.bz2 $d/
popd
Expand Down

0 comments on commit c1af2de

Please sign in to comment.