-
Notifications
You must be signed in to change notification settings - Fork 836
98 lines (73 loc) · 3.03 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
# TODO: Update the workflow to build on Android, iOS, desktop (macOS and Windows) instead of just Linux and Web
name: Build the example
on:
pull_request:
branches: [master, dev]
jobs:
build_linux:
name: Build Linux and Web Apps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Check Flutter Version
run: flutter --version
- name: Enable Local Development Environment (use the local packages)
run: ./scripts/enable_local_dev.sh
- name: Install Flutter Dependencies
run: flutter pub get
- name: Build Flutter Web Application
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example
- name: Update and Upgrade APT Packages
run: sudo apt update -y && sudo apt upgrade -y
- name: Install Flutter Linux Prerequisites
run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa
- name: Install Flutter Linux Desktop Dependencies
run: sudo apt install -y clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
- name: Build Flutter Linux Desktop Application
run: flutter build linux --release --verbose --dart-define=CI=true
working-directory: ./example
# build_windows:
# name: Build Windows App
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v4
# - uses: subosito/flutter-action@v2
# with:
# channel: 'stable'
# cache: true
# - name: Check flutter version
# run: flutter --version
# # Sh scripts is not supported on windows
# - name: Enable Local Dev
# run: ./scripts/enable_local_dev.sh
# - name: Install dependencies
# run: flutter pub get
# - name: Flutter build windows
# run: flutter build windows --release --verbose --dart-define=CI=true
# working-directory: ./example
# build_macOS:
# name: Build macOS App
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - uses: subosito/flutter-action@v2
# with:
# channel: 'stable'
# cache: true
# - name: Check flutter version
# run: flutter --version
# - name: Enable Local Dev
# run: ./scripts/enable_local_dev.sh
# - name: Install dependencies
# run: flutter pub get
# - name: Flutter build macOS
# run: flutter build macos --release --verbose --dart-define=CI=true
# working-directory: ./example
# - name: Flutter build iOS
# run: flutter build ios --release --verbose --dart-define=CI=true
# working-directory: ./example