forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbitrise.yml
55 lines (53 loc) · 1.46 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
---
format_version: '6'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: other
trigger_map:
- push_branch: master
workflow: primary
- pull_request_source_branch: "*"
pull_request_target_branch: master
workflow: primary
workflows:
primary:
steps:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- [email protected]: {}
- [email protected]: {}
title: Unlink Node
inputs:
- content: brew unlink node@8 || true
inputs:
- packages: autoconf automake cmake protobuf swift-protobuf boost node
title: Run Tests
inputs:
- content: |-
#!/usr/bin/env bash
set -e
set -x
tools/generate-files
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
make -C build tests
build/tests/tests --gtest_output=xml
title: Run Ruby Tests
inputs:
- content: |
#!/usr/bin/env bash
set -e
set -x
cd codegen
rake
inputs:
- source_root_path: "$BITRISE_SOURCE_DIR/swift"
inputs:
- scheme: TrustWalletCore
- project_path: swift/TrustWalletCore.xcworkspace
- [email protected]: {}
- [email protected]: {}