-
Notifications
You must be signed in to change notification settings - Fork 16
/
bitrise.yml
executable file
·47 lines (43 loc) · 1.26 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
format_version: "11"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
check:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git: { }
e2e:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git:
inputs:
- workflow: e2e
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main: { }
sample:
envs:
- GRADLE_BUILD_FILE_PATH: build.gradle
- GRADLEW_PATH: ./gradlew
steps:
- script:
inputs:
- content: |-
#!/usr/bin/env bash
set -e
rm -rf ./_tmp
- change-workdir:
title: Switch working dir to test / _tmp dir
run_if: "true"
inputs:
- path: ./_tmp
- is_create_path: true
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git@master:
inputs:
- repository_url: https://github.com/bitrise-io/sample-apps-android-sdk22.git
- clone_into_dir: .
- branch: master
- path::./:
title: Execute step
inputs:
- gradlew_dependencies_options: --configuration-cache-problems=warn
- gradle-runner:
inputs:
- gradle_task: assembleDebug