build_mac_proj
Automate macOS app builds by specifying project paths, schemes, and configurations using xcodebuild. Supports custom architectures, derived data paths, and additional arguments for tailored builds.
Instructions
Builds a macOS app using xcodebuild from a project file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arch | No | Architecture to build for (arm64 or x86_64). For macOS only. | |
configuration | No | Build configuration (Debug, Release, etc.) | |
derivedDataPath | No | Path where build products and other derived data will go | |
extraArgs | No | Additional xcodebuild arguments | |
preferXcodebuild | No | If true, prefers xcodebuild over the experimental incremental build system, useful for when incremental build system fails. | |
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | Yes | The scheme to use (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"arch": {
"description": "Architecture to build for (arm64 or x86_64). For macOS only.",
"enum": [
"arm64",
"x86_64"
],
"type": "string"
},
"configuration": {
"description": "Build configuration (Debug, Release, etc.)",
"type": "string"
},
"derivedDataPath": {
"description": "Path where build products and other derived data will go",
"type": "string"
},
"extraArgs": {
"description": "Additional xcodebuild arguments",
"items": {
"type": "string"
},
"type": "array"
},
"preferXcodebuild": {
"description": "If true, prefers xcodebuild over the experimental incremental build system, useful for when incremental build system fails.",
"type": "boolean"
},
"projectPath": {
"description": "Path to the .xcodeproj file (Required)",
"type": "string"
},
"scheme": {
"description": "The scheme to use (Required)",
"type": "string"
}
},
"required": [
"projectPath",
"scheme"
],
"type": "object"
}