-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (68 loc) · 1.97 KB
/
ci.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
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
setup-env:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
- run: flutter --version
- name: Install dependencies
run: flutter pub get
basic-analysis:
# Basic analysis
needs: setup-env
runs-on: self-hosted
steps:
- name: Run tests
run: flutter test
- name: Analyze
run: flutter analyze --no-fatal-infos --no-fatal-warnings
build-android:
# Build Android APK and app bundle
needs: basic-analysis
runs-on: self-hosted
steps:
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- name: Build release APK
run: flutter build apk --release
- name: Build release app bundle
run: flutter build appbundle
# - name: Delete previous APK artifact
# uses: geekyeggo/delete-artifact@v2
# with:
# name: CoRider.apk
# - name: Upload APK
# uses: actions/upload-artifact@v3
# with:
# name: CoRider.apk
# path: build/app/outputs/apk/release/app-release.apk
build-ios:
# Build for iOS
needs: basic-analysis
runs-on: self-hosted
steps:
- name: Build release iOS app
run: flutter build ios --release --no-codesign
# - name: Delete previous iOS app artifact
# uses: geekyeggo/delete-artifact@v2
# with:
# name: CoRider.app
# - name: Upload iOS app
# uses: actions/upload-artifact@v3
# with:
# name: CoRider.app
# path: build/ios/iphoneos/Runner.app