forked from MaikuB/flutter_local_notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
103 lines (96 loc) · 2.57 KB
/
.cirrus.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
task:
name: Build Android example app
container:
image: cirrusci/flutter:stable
pub_cache:
folder: ~/.pub-cache
build_script:
- cd flutter_local_notifications/example
- flutter build apk --debug
task:
name: Build iOS example app
osx_instance:
image: big-sur-xcode-12.4
pub_cache:
folder: ~/.pub-cache
upgrade_script:
- flutter channel stable
- flutter upgrade
build_script:
- cd flutter_local_notifications/example
- flutter build ios --no-codesign --debug
task:
name: Build macOS example app
osx_instance:
image: big-sur-xcode-12.4
pub_cache:
folder: ~/.pub-cache
upgrade_script:
- flutter channel stable
- flutter upgrade
setup_script:
- flutter config --enable-macos-desktop
build_script:
- cd flutter_local_notifications/example
- flutter build macos
task:
name: Build Linux example app
container:
image: cirrusci/flutter:stable
pub_cache:
folder: ~/.pub-cache
setup_script:
- apt update
- apt install cmake ninja-build clang pkg-config libgtk-3-dev -y
- flutter config --enable-linux-desktop
build_script:
- cd flutter_local_notifications/example
- flutter build linux
task:
name: Run platform interface tests
container:
image: cirrusci/flutter:stable
test_script:
- cd flutter_local_notifications_platform_interface
- flutter test
task:
name: Run plugin unit tests
container:
image: cirrusci/flutter:stable
pub_cache:
folder: ~/.pub-cache
test_script:
- cd flutter_local_notifications
- flutter test
task:
name: Run integration tests (Android)
env:
EMULATOR_API_LEVEL: 28
ANDROID_ABI: "default;x86"
container:
image: cirrusci/flutter:stable
cpu: 4
memory: 10G
kvm: true
pub_cache:
folder: ~/.pub-cache
install_images_script: sdkmanager "system-images;android-$EMULATOR_API_LEVEL;$ANDROID_ABI"
create_device_script:
echo no | avdmanager create avd --force -n test -k "system-images;android-$EMULATOR_API_LEVEL;$ANDROID_ABI"
start_emulator_background_script:
$ANDROID_HOME/emulator/emulator -no-window -verbose -avd test -no-audio -no-window
wait_for_emulator_script:
android-wait-for-emulator
test_script:
- cd flutter_local_notifications
- cd example
- flutter drive --driver=test_driver/integration_test.dart --target=integration_test/flutter_local_notifications_test.dart
task:
name: Run Linux plugin tests
container:
image: cirrusci/flutter:stable
pub_cache:
folder: ~/.pub-cache
test_script:
- cd flutter_local_notifications_linux
- flutter test