-
Notifications
You must be signed in to change notification settings - Fork 0
119 lines (102 loc) · 3.21 KB
/
test_app.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
# Verify that the app build works as intended
# when utilizing the code inside the repository.
name: test-app
on:
push:
branches:
- main
paths-ignore:
- "**.md"
- "**.html"
pull_request:
paths-ignore:
- "**.md"
- "**.html"
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@v4
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 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@v4
with:
distribution: "zulu"
java-version: "17"
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install the CLI tool
working-directory: rust_crate/
run: cargo install --path ./
- name: Prepare a Flutter app for testing
run: python automate prepare-test-app
- name: Build the example app
if: matrix.target == 'linux'
working-directory: test_app/
run: flutter build linux --verbose
- name: Build the example app
if: matrix.target == 'android'
working-directory: test_app/
run: |
flutter build apk --verbose
flutter build appbundle --verbose
- name: Build the example app
if: matrix.target == 'windows'
working-directory: test_app/
run: flutter build windows --verbose
- name: Build the example app
if: matrix.target == 'macos'
working-directory: test_app/
run: flutter build macos --verbose
- name: Build the example app
if: matrix.target == 'ios'
working-directory: test_app/
run: flutter build ios --verbose --no-codesign
- name: Build the example app
if: matrix.target == 'web'
working-directory: test_app/
run: |
rinf wasm --release
flutter build web --verbose