-
Notifications
You must be signed in to change notification settings - Fork 854
107 lines (80 loc) · 2.8 KB
/
build.yml
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
name: Build the example
on:
pull_request:
branches: [master, dev]
jobs:
# Build the Linux, Android and web apps on Linux
linux-web-android:
name: Linux, Android and Web Apps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Verify Flutter installation
run: flutter --version
- name: Install flutter_quill dependencies
run: flutter pub get
- name: Install example dependencies
run: flutter pub get -C example
- name: Build the Web app
run: flutter build web --release --dart-define=CI=true
working-directory: ./example
- name: Build the Web app with WebAssembly
run: flutter build web --release --wasm --dart-define=CI=true
working-directory: ./example
- name: Install Linux dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y curl git unzip xz-utils zip libglu1-mesa
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
- name: Build the Linux app
run: flutter build linux --release --dart-define=CI=true
working-directory: ./example
- name: Build the Android app
run: flutter build appbundle --release --dart-define=CI=true
working-directory: ./example
macos:
name: iOS and macOS apps
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Verify Flutter installation
run: flutter --version
- name: Install flutter_quill dependencies
run: flutter pub get
- name: Install example dependencies
run: flutter pub get -C example
- name: Build the iOS app
run: flutter build ios --no-codesign --release --dart-define=CI=true
working-directory: ./example
- name: Build the macOS app
run: flutter build macos --release --dart-define=CI=true
working-directory: ./example
windows:
name: Windows app
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Verify Flutter installation
run: flutter --version
- name: Install flutter_quill dependencies
run: flutter pub get
- name: Install example dependencies
run: flutter pub get -C example
- name: Build the Windows app
run: flutter build windows --release --dart-define=CI=true
working-directory: ./example