Support output directories for active tasks #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This source file is part of the Stanford Biodesign Digital Health Group open-source organization | |
# | |
# SPDX-FileCopyrightText: 2022 Stanford University and the project authors (see CONTRIBUTORS.md) | |
# | |
# SPDX-License-Identifier: MIT | |
# | |
name: Build XCArchive | |
on: | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
version: | |
description: 'The version number of the framework embedded in the XCArchives.' | |
type: string | |
required: true | |
jobs: | |
build-xcarchive: | |
uses: StanfordBDHG/.github/.github/workflows/archive.yml@v2 | |
strategy: | |
matrix: | |
include: | |
- configuration: Release | |
cxxInterop: false | |
- configuration: Debug # It's only possible to build ResearchKit with enabled C++ interop in Debug configuration | |
cxxInterop: true | |
with: | |
workspaceFile: RKWorkspace.xcworkspace | |
xcArchiveName: ResearchKit | |
scheme: ResearchKit | |
version: ${{ inputs.version }} | |
configuration: ${{ matrix.configuration }} | |
cxxInterop: ${{ matrix.cxxInterop }} | |
sdk: '["iphoneos", "iphonesimulator", "xros", "xrsimulator"]' | |
runsonlabels: '["macOS", "self-hosted"]' |