-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Build and release | ||
|
||
on: | ||
push: | ||
branches: ["master", "feat/actions"] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8 | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: '3.16.5' | ||
channel: 'stable' | ||
- name: Install scripts runtime | ||
run: pnpm install | ||
- name: Install cargo-ndk | ||
run: | | ||
cargo install cargo-ndk | ||
rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android | ||
- name: Install flutter dependencies | ||
run: flutter pub get | ||
- name: Install flutter rust bridge | ||
run: cargo install '[email protected]' | ||
- name: Generate codes | ||
run: pnpm run generate | ||
- name: Run tests | ||
run: cargo test --verbose | ||
- name: Build APK | ||
run: pnpm run build:apk |