-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
bitrise.yml
48 lines (46 loc) · 1.14 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
---
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: {}
- flutter-installer@0.11:
inputs:
- version: 2.8.1
- script@1.1:
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails
set -e
# debug log
set -x
flutter pub get
flutter analyze
cd example
flutter build ios --debug --no-codesign
flutter build apk --debug
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
meta:
bitrise.io:
stack: osx-xcode-13.2.x