blob: 057193967efa1f4f8f3779e7b1bdb467608a0bc8 (
plain)
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
|
format_version: 1.1.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- pattern: nightly-release
workflow: nightly-release
- pattern: "*"
is_pull_request_allowed: true
workflow: primary
workflows:
primary:
steps:
- script:
title: Skip Workflow
inputs:
- content: echo "This workflow is obsolete — see CircleCi."
nightly-release:
steps:
- script:
title: Build
inputs:
- content: |-
#!/bin/bash
set -eu -o pipefail
brew install cmake
pip install awscli
gem install xcpretty --no-rdoc --no-ri
BUILDTYPE=Release SYMBOLS=NO make xpackage
CLOUDWATCH=true platform/macos/scripts/metrics.sh
|