-
Notifications
You must be signed in to change notification settings - Fork 71
132 lines (111 loc) · 3.7 KB
/
build_test.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
name: build-test
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
workflow_dispatch:
concurrency:
# Cancels the workflow
# when another event in the same context happens.
# If it's a PR, context is the pull request number.
# Otherwise, it uses the Git reference(branch or tag name).
group: >
${{ github.workflow }}
${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: ${{ matrix.runner }} / ${{ matrix.target }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false # Important
matrix:
runner: [ubuntu-latest, windows-latest, macos-latest]
target: [android, web] # On all platforms
include:
# Specify targets for each platform
- runner: ubuntu-latest
target: linux
- runner: windows-latest
target: windows
- runner: macos-latest
target: macos
- runner: macos-latest
target: ios
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Flutter SDK
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Setup Protobuf compiler
uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Ninja and GTK3 toolchain (Only Linux target)
if: matrix.target == 'linux'
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- name: Setup Java toolchain (Only Android target)
if: matrix.target == 'android'
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "11"
- name: Install the CLI tool
working-directory: rust_crate/
run: cargo install --path ./
- name: Create a Flutter app for testing
working-directory: flutter_ffi_plugin/
run: flutter create test_app
- name: Fetch Flutter dependencies
working-directory: flutter_ffi_plugin/test_app/
run: flutter pub get
- name: Add this framework as a dependency
working-directory: flutter_ffi_plugin/test_app/
run: dart pub add "rinf:{'path':'../'}"
- name: Apply Rust template
working-directory: flutter_ffi_plugin/test_app/
run: rinf template
- name: Generate message files
working-directory: flutter_ffi_plugin/test_app/
run: rinf message
- name: Build the example app
if: matrix.target == 'linux'
working-directory: flutter_ffi_plugin/test_app/
run: flutter build linux
- name: Build the example app
if: matrix.target == 'android'
working-directory: flutter_ffi_plugin/test_app/
run: |
flutter build apk
flutter build appbundle
- name: Build the example app
if: matrix.target == 'windows'
working-directory: flutter_ffi_plugin/test_app/
run: flutter build windows
- name: Build the example app
if: matrix.target == 'macos'
working-directory: flutter_ffi_plugin/test_app/
run: flutter build macos
- name: Build the example app
if: matrix.target == 'ios'
working-directory: flutter_ffi_plugin/test_app/
run: flutter build ios --no-codesign
- name: Build the example app
if: matrix.target == 'web'
working-directory: flutter_ffi_plugin/test_app/
run: |
rinf wasm --release
flutter build web