-
Notifications
You must be signed in to change notification settings - Fork 23
/
bitrise.yml
57 lines (57 loc) · 1.41 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
50
51
52
53
54
55
56
57
---
format_version: '7'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: android
workflows:
ci:
after_run:
- primary
run_from_repo:
steps:
- activate-ssh-key:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone: {}
- script:
title: continue from repo
inputs:
- content: |-
#!/bin/bash
set -ex
bitrise run "${BITRISE_TRIGGERED_WORKFLOW_ID}"
primary:
steps:
- cache-pull@2: {}
- install-missing-android-tools@2:
inputs:
- gradlew_path: "$PROJECT_LOCATION/gradlew"
- android-lint@0:
inputs:
- project_location: "$PROJECT_LOCATION/"
- module: "$MODULE"
- variant: "Release"
- android-detekt@0: {}
- android-unit-test@1:
inputs:
- project_location: "$PROJECT_LOCATION/"
- module: "$MODULE"
- variant: "$VARIANT"
- android-build-for-ui-testing@0:
inputs:
- project_location: "$PROJECT_LOCATION/"
- variant: debug
- module: app
- virtual-device-testing-for-android@1: {}
- deploy-to-bitrise-io@1:
is_always_run: false
- cache-push@2: {}
app:
envs:
- opts:
is_expand: false
PROJECT_LOCATION: "."
- opts:
is_expand: false
MODULE: app
- opts:
is_expand: false
VARIANT: ''