-
Notifications
You must be signed in to change notification settings - Fork 113
/
bitrise.yml
50 lines (47 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
49
50
---
format_version: 1.0.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- push_branch: primary
workflow: primary
- push_branch: "*"
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
primary:
steps:
title: Activate App SSH key
inputs:
- ssh_key_save_path: "$HOME/.ssh/steplib_ssh_step_id_rsa"
- [email protected]: {}
title: Install
inputs:
- content: |-
#!/bin/bash
bash ./test/install-deps.sh install_osx
- working_dir: "${BITRISE_SOURCE_DIR}"
title: Build
inputs:
- content: |-
#!/bin/bash
gnumake M32=-m32
- working_dir: "${BITRISE_SOURCE_DIR}"
title: Test
inputs:
- content: |-
#!/bin/bash
gnumake check M32=-m32
- working_dir: "${BITRISE_SOURCE_DIR}"
app:
envs:
- BITRISE_PROJECT_PATH: Makefile
opts:
is_expand: false
- BITRISE_SCHEME: check
opts:
is_expand: false