forked from bitrise-steplib/steps-xcode-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
50 lines (46 loc) · 1.54 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
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
sample:
envs:
- TEST_APP_URL: https://github.com/bitrise-io/sample-apps-ios-simple-objc.git
- TEST_APP_BRANCH: master
- BITRISE_PROJECT_PATH: ios-simple-objc/ios-simple-objc.xcodeproj
- BITRISE_SCHEME: ios-simple-objc
- FORCE_CODE_SIGN_IDENTITY: "iPhone Developer: Tooling Bot Bitrise"
- IPA_DISTRIBUTION_METHOD: development
- LOG_FORMATTER: xcodebuild
steps:
- script:
inputs:
- content: |-
#!/bin/env bash
set -ex
rm -rf ./_tmp
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git@master:
inputs:
- repository_url: $TEST_APP_URL
- branch: $TEST_APP_BRANCH
- clone_into_dir: ./_tmp
- path::./:
inputs:
- project_path: ./_tmp/$BITRISE_PROJECT_PATH
- scheme: $BITRISE_SCHEME
- xcconfig_content: |
CODE_SIGN_IDENTITY = $FORCE_CODE_SIGN_IDENTITY
- distribution_method: $IPA_DISTRIBUTION_METHOD
- log_formatter: $LOG_FORMATTER
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main:
inputs:
- contrib_section: docs/contribution.md
- example_section: docs/examples.md