Welcome to mirror list, hosted at ThFree Co, Russian Federation.

steps_macos.yml « azure-pipelines « .ci - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96b2e50fc9ea4a6e2da656a26f3a2c306954b234 (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
# Copyright 2020-2021 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.

parameters:
- name: installEnvironment
  type: boolean
  default: false

steps:
  - script: git submodule --quiet update --init --recursive
    displayName: 'Fetch submodules'
  - ${{if eq(parameters.installEnvironment, true)}}:
    - script: .ci/azure-pipelines/install-environment_macos.bash
      displayName: 'Install build environment'
  - script: .ci/azure-pipelines/build_macos.bash
    env:
      MUMBLE_BUILD_NUMBER_TOKEN: $(BUILD_NUMBER_TOKEN)
    displayName: 'Build'
  - script: 'cd $BUILD_BINARIESDIRECTORY; ctest --verbose'
    displayName: 'Test'
  - script: .ci/azure-pipelines/release_macos.bash
    displayName: 'Release'
  - template: task-publish-artifacts.yml
    parameters:
      name: "macOS package"