-
Notifications
You must be signed in to change notification settings - Fork 314
164 lines (162 loc) · 6.03 KB
/
check-compatibility.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: Add library to new flutter project
on:
pull_request:
branches:
- main
push:
branches:
- main
- 2.x
jobs:
build-for-android:
name: Build for Android on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=android
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- run: flutter build apk --debug
working-directory: ${{ github.workspace }}/new_project
name: Build example
build-for-ios:
name: Build for ios on macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=ios
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- name: Set minimum iOS version
run: |
[ -f "ios/Podfile" ] && sed -i '' 's/platform :ios, .*/platform :ios, '\''11.0'\''/g' ios/Podfile
[ -f "ios/Runner.xcodeproj/project.pbxproj" ] && sed -i '' 's/IPHONEOS_DEPLOYMENT_TARGET = .*;/IPHONEOS_DEPLOYMENT_TARGET = 11.0;/g' ios/Runner.xcodeproj/project.pbxproj
working-directory: ${{ github.workspace }}/new_project
- run: flutter build ios --release --no-codesign
working-directory: ${{ github.workspace }}/new_project
name: Build example
build-for-web:
name: Build for Web on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=web
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- run: flutter build web --release
working-directory: ${{ github.workspace }}/new_project
name: Build example
build-for-linux:
name: Build for Linux on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- name: Install required packages
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- name: Enable support for linux
run: flutter config --enable-linux-desktop
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=linux
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- run: flutter build linux --release
working-directory: ${{ github.workspace }}/new_project
name: Build example
build-for-macos:
name: Build for macOS on macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=macos
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- name: Set minimum macOS version
run: |
[ -f "macos/Podfile" ] && sed -i '' 's/platform :osx, .*/platform :osx, '\''11.0'\''/g' macos/Podfile
[ -f "macos/Runner.xcodeproj/project.pbxproj" ] && sed -i '' 's/MACOSX_DEPLOYMENT_TARGET = .*;/MACOSX_DEPLOYMENT_TARGET = 11.0;/g' macos/Runner.xcodeproj/project.pbxproj
working-directory: ${{ github.workspace }}/new_project
- run: flutter build macos --release
working-directory: ${{ github.workspace }}/new_project
name: Build example
build-for-windows:
name: Build for Windows on windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter doctor -v
name: Flutter info
- run: flutter create new_project --platforms=windows
name: Create new project
- name: Add photo_manager to new project.
run: flutter pub add -- 'photo_manager:{"path":".."}'
working-directory: ${{ github.workspace }}/new_project
shell: bash
- run: flutter pub get
working-directory: ${{ github.workspace }}/new_project
- run: flutter build windows --release
working-directory: ${{ github.workspace }}/new_project
name: Build example