forked from 21-DOT-DEV/swift-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbitrise.yml
41 lines (40 loc) · 987 Bytes
/
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
---
format_version: '11'
default_step_lib_source: 'https://github.com/bitrise-io/bitrise-steplib.git'
project_type: other
meta:
bitrise.io:
stack: osx-xcode-13.3.x
machine_type_id: g2.4core
trigger_map:
- push_branch: main
workflow: ENTRY-POINT
- pull_request_source_branch: '*'
workflow: ENTRY-POINT
workflows:
ENTRY-POINT:
steps:
- git-clone: {}
- bitrise-run:
title: Linux
run_if: '{{ getenv "BITRISE_APP_SLUG" | eq "f1bbbdfeff08cd5c" }}'
inputs:
- workflow_id: LINUX
- bitrise-run:
title: macOS
run_if: '{{ getenv "BITRISE_APP_SLUG" | eq "18c18db60fc4fddf" }}'
inputs:
- workflow_id: MACOS
LINUX:
steps:
- script:
title: docker build
inputs:
- content: |-
#!/usr/bin/env bash
# fail if any commands fails; debug log
set -ex
docker build .
MACOS:
steps:
- swift-package-manager-test-for-mac: {}