forked from kmcgill88/admob_flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
49 lines (48 loc) · 1.23 KB
/
bitrise.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
---
format_version: '8'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: flutter
trigger_map:
- push_branch: master
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
primary:
steps:
- git-clone@4.0.17: {}
- cache-pull@2.1.1: {}
- flutter-installer: {}
- flutter@0.0.7:
inputs:
- commands: packages get|analyze
- version: 1.9.1+hotfix.4
- script@1.1.5:
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails
set -e
# debug log
set -x
cd example
flutter build ios --debug --no-codesign
flutter build apk --debug
- cache-push@2.2.1: {}
meta:
bitrise.io:
stack: osx-xcode-11.1.x
app:
envs:
- opts:
is_expand: false
BITRISE_FLUTTER_PROJECT_LOCATION: example
- opts:
is_expand: false
BITRISE_PROJECT_PATH: example/ios/Runner.xcworkspace
- opts:
is_expand: false
BITRISE_SCHEME: Runner
- opts:
is_expand: false
BITRISE_EXPORT_METHOD: development