xcodebuild-axi 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -1
- package/README.md +13 -14
- package/dist/src/action.d.ts +13 -3
- package/dist/src/action.js +18 -0
- package/dist/src/action.js.map +1 -1
- package/dist/src/commands/analyze.d.ts +1 -1
- package/dist/src/commands/analyze.js +1 -1
- package/dist/src/commands/archive.d.ts +1 -1
- package/dist/src/commands/archive.js +1 -1
- package/dist/src/commands/build.d.ts +1 -1
- package/dist/src/commands/build.js +1 -1
- package/dist/src/commands/test.d.ts +1 -1
- package/dist/src/commands/test.js +1 -1
- package/dist/src/commands/tests.d.ts +1 -1
- package/dist/src/commands/tests.js +1 -1
- package/dist/src/surface.js +2 -2
- package/dist/src/surface.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ Notable changes to `xcodebuild-axi`. Versions follow
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.5] - 2026-09-21
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `--artifacts-dir <path>` on the build family (`build`, `test`, `analyze`,
|
|
14
|
+
`archive`, `tests`), choosing where a run's log and `.xcresult` land. The
|
|
15
|
+
default is unchanged.
|
|
16
|
+
|
|
17
|
+
CI could not collect either one. `artifactDir()` is hardcoded under
|
|
18
|
+
`~/Library/Caches/xcodebuild-axi/`, which is right for an interactive agent
|
|
19
|
+
and wrong for a workflow that ends in
|
|
20
|
+
`upload-artifact: path: build/` -- point such a job at this tool and a red run
|
|
21
|
+
silently uploads nothing, losing the one output worth reading. A relative path
|
|
22
|
+
resolves against the working directory, so `--artifacts-dir build/` means the
|
|
23
|
+
checked-out workspace.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- `-resultBundlePath` moves from "reachable without a flag" to **exposed** in
|
|
28
|
+
the coverage table. The reasoning it carried still holds -- the tool writes
|
|
29
|
+
the bundle and reads its report back -- it just no longer insists on choosing
|
|
30
|
+
the location.
|
|
31
|
+
|
|
9
32
|
## [0.1.4] - 2026-09-21
|
|
10
33
|
|
|
11
34
|
### Added
|
|
@@ -109,7 +132,8 @@ First release.
|
|
|
109
132
|
- 100% of the 117 options `xcodebuild -help` lists are covered, declared in
|
|
110
133
|
`src/surface.ts` and checked against the installed Xcode in CI.
|
|
111
134
|
|
|
112
|
-
[unreleased]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.
|
|
135
|
+
[unreleased]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.5...HEAD
|
|
136
|
+
[0.1.5]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.4...v0.1.5
|
|
113
137
|
[0.1.4]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.3...v0.1.4
|
|
114
138
|
[0.1.3]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.2...v0.1.3
|
|
115
139
|
[0.1.2]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.1...v0.1.2
|
package/README.md
CHANGED
|
@@ -173,20 +173,19 @@ Every command takes `--help`.
|
|
|
173
173
|
|
|
174
174
|
**Coverage: 100% — every one of the 117 options `xcodebuild -help` lists, and 9 of its 10 build actions.**
|
|
175
175
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
| Option | How
|
|
179
|
-
| ------------------------------- |
|
|
180
|
-
| `-json` | every read-only query asks for JSON, then reports TOON
|
|
181
|
-
| `-project` | set from the .xcodeproj found in the working directory
|
|
182
|
-
| `-
|
|
183
|
-
| `-
|
|
184
|
-
| `-test-enumeration-
|
|
185
|
-
| `-test-enumeration-
|
|
186
|
-
| `-
|
|
187
|
-
| `-
|
|
188
|
-
| `-
|
|
189
|
-
| `-usage` | `xcodebuild-axi <command> --help`, per command rather than all 117 at once |
|
|
176
|
+
108 options map to an `xcodebuild-axi` flag. The other 9 are reachable without one:
|
|
177
|
+
|
|
178
|
+
| Option | How |
|
|
179
|
+
| ------------------------------- | ------------------------------------------------------------------------------- |
|
|
180
|
+
| `-json` | every read-only query asks for JSON, then reports TOON |
|
|
181
|
+
| `-project` | set from the .xcodeproj found in the working directory |
|
|
182
|
+
| `-skipMacroValidation` | macro trust is an interactive prompt in disguise, and an agent cannot answer it |
|
|
183
|
+
| `-test-enumeration-format` | always json, so `tests` can parse it |
|
|
184
|
+
| `-test-enumeration-output-path` | written to the tool's cache and read back, never printed |
|
|
185
|
+
| `-test-enumeration-style` | always flat; `tests` does its own grouping by target and suite |
|
|
186
|
+
| `-workspace` | set from the .xcworkspace found in the working directory |
|
|
187
|
+
| `-help` | `xcodebuild-axi --help`, which answers it in a fraction of the tokens |
|
|
188
|
+
| `-usage` | `xcodebuild-axi <command> --help`, per command rather than all 117 at once |
|
|
190
189
|
|
|
191
190
|
The one action left out is `installsrc` — it copies sources into `SRCROOT` as root, which is a packaging step rather than anything an agent loop needs.
|
|
192
191
|
|
package/dist/src/action.d.ts
CHANGED
|
@@ -9,10 +9,10 @@ import { type BuildRun } from "./xcodebuild.js";
|
|
|
9
9
|
* worth extracting the first time a second command needed it.
|
|
10
10
|
*/
|
|
11
11
|
/** Flags every build-family command accepts. Keep in sync with `BUILD_FLAG_HELP`. */
|
|
12
|
-
export declare const SHARED_BUILD_FLAGS: readonly ["--scheme", "--target", "--all-targets", "--device", "--destination", "--configuration", "--sdk", "--arch", "--toolchain", "--xcconfig", "--derived-data", "--jobs", "--setting", "--sign", "--allow-provisioning", "--sanitizer", "--timing", "--destination-timeout", "--parallelize-targets", "--hide-script-env", "--skip-unavailable-actions", "--max-errors", "--full", "--codesize", "--log-level", "--bundle-version", "--stream", "--offline", "--cache", "--package-cache", "--no-auto-resolve", "--skip-package-updates", "--no-package-cache", "--skip-plugin-validation", "--skip-signature-validation", "--package-auth", "--registry-url", "--scm-to-registry", "--fingerprint-policy", "--signing-entity-policy", "--scm-provider"];
|
|
13
|
-
export declare const SHARED_BUILD_VALUE_FLAGS: readonly ["--scheme", "--target", "--device", "--destination", "--configuration", "--sdk", "--arch", "--toolchain", "--xcconfig", "--derived-data", "--jobs", "--setting", "--sanitizer", "--destination-timeout", "--max-errors", "--codesize", "--log-level", "--bundle-version", "--stream", "--cache", "--package-cache", "--package-auth", "--registry-url", "--scm-to-registry", "--fingerprint-policy", "--signing-entity-policy", "--scm-provider"];
|
|
12
|
+
export declare const SHARED_BUILD_FLAGS: readonly ["--scheme", "--target", "--all-targets", "--device", "--destination", "--configuration", "--sdk", "--arch", "--toolchain", "--xcconfig", "--derived-data", "--artifacts-dir", "--jobs", "--setting", "--sign", "--allow-provisioning", "--sanitizer", "--timing", "--destination-timeout", "--parallelize-targets", "--hide-script-env", "--skip-unavailable-actions", "--max-errors", "--full", "--codesize", "--log-level", "--bundle-version", "--stream", "--offline", "--cache", "--package-cache", "--no-auto-resolve", "--skip-package-updates", "--no-package-cache", "--skip-plugin-validation", "--skip-signature-validation", "--package-auth", "--registry-url", "--scm-to-registry", "--fingerprint-policy", "--signing-entity-policy", "--scm-provider"];
|
|
13
|
+
export declare const SHARED_BUILD_VALUE_FLAGS: readonly ["--scheme", "--target", "--device", "--destination", "--configuration", "--sdk", "--arch", "--toolchain", "--xcconfig", "--derived-data", "--artifacts-dir", "--jobs", "--setting", "--sanitizer", "--destination-timeout", "--max-errors", "--codesize", "--log-level", "--bundle-version", "--stream", "--cache", "--package-cache", "--package-auth", "--registry-url", "--scm-to-registry", "--fingerprint-policy", "--signing-entity-policy", "--scm-provider"];
|
|
14
14
|
/** The shared flag block, so each command's `--help` stays consistent. */
|
|
15
|
-
export declare const BUILD_FLAG_HELP = " --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode";
|
|
15
|
+
export declare const BUILD_FLAG_HELP = " --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode";
|
|
16
16
|
/**
|
|
17
17
|
* The flags that map straight onto an xcodebuild switch with no interpretation
|
|
18
18
|
* beyond validation. Grouped so they can be tested without a project.
|
|
@@ -28,6 +28,8 @@ export interface BuildContext {
|
|
|
28
28
|
xcodebuildArgs: string[];
|
|
29
29
|
maxErrors: number;
|
|
30
30
|
full: boolean;
|
|
31
|
+
/** Where to write the log and result bundle, when the caller chose. */
|
|
32
|
+
artifactsDir: string | undefined;
|
|
31
33
|
}
|
|
32
34
|
export interface ResolveBuildContextOptions {
|
|
33
35
|
args: string[];
|
|
@@ -36,6 +38,14 @@ export interface ResolveBuildContextOptions {
|
|
|
36
38
|
needsDestination?: boolean;
|
|
37
39
|
}
|
|
38
40
|
export declare function resolveBuildContext(options: ResolveBuildContextOptions): Promise<BuildContext>;
|
|
41
|
+
/**
|
|
42
|
+
* Where a run's log and result bundle should go, if the caller said.
|
|
43
|
+
*
|
|
44
|
+
* Resolved against the working directory: a CI job asking for `build/` means
|
|
45
|
+
* the workspace it checked out, and `runBuild` will `mkdir -p` whatever it is
|
|
46
|
+
* handed from wherever the process happens to be.
|
|
47
|
+
*/
|
|
48
|
+
export declare function artifactsDirFrom(args: string[]): string | undefined;
|
|
39
49
|
/** A filesystem stem that distinguishes runs of different commands and devices. */
|
|
40
50
|
export declare function runLabel(context: BuildContext, command: string): string;
|
|
41
51
|
export interface RunActionOptions {
|
package/dist/src/action.js
CHANGED
|
@@ -31,6 +31,7 @@ export const SHARED_BUILD_FLAGS = [
|
|
|
31
31
|
"--toolchain",
|
|
32
32
|
"--xcconfig",
|
|
33
33
|
"--derived-data",
|
|
34
|
+
"--artifacts-dir",
|
|
34
35
|
"--jobs",
|
|
35
36
|
"--setting",
|
|
36
37
|
"--sign",
|
|
@@ -60,6 +61,7 @@ export const SHARED_BUILD_VALUE_FLAGS = [
|
|
|
60
61
|
"--toolchain",
|
|
61
62
|
"--xcconfig",
|
|
62
63
|
"--derived-data",
|
|
64
|
+
"--artifacts-dir",
|
|
63
65
|
"--jobs",
|
|
64
66
|
"--setting",
|
|
65
67
|
"--sanitizer",
|
|
@@ -83,6 +85,7 @@ export const BUILD_FLAG_HELP = ` --scheme <name> scheme to act on (requ
|
|
|
83
85
|
--toolchain <name> toolchain identifier or name
|
|
84
86
|
--xcconfig <path> apply build settings from this file as overrides
|
|
85
87
|
--derived-data <path> derived data directory
|
|
88
|
+
--artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)
|
|
86
89
|
--jobs <n> maximum concurrent build operations
|
|
87
90
|
--setting KEY=VALUE build setting override; repeatable or comma-separated
|
|
88
91
|
--sign allow code signing (off by default, so simulator builds need no team)
|
|
@@ -270,8 +273,20 @@ export async function resolveBuildContext(options) {
|
|
|
270
273
|
xcodebuildArgs,
|
|
271
274
|
maxErrors: getIntFlag(args, "--max-errors") ?? 20,
|
|
272
275
|
full: hasFlag(args, "--full"),
|
|
276
|
+
artifactsDir: artifactsDirFrom(args),
|
|
273
277
|
};
|
|
274
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* Where a run's log and result bundle should go, if the caller said.
|
|
281
|
+
*
|
|
282
|
+
* Resolved against the working directory: a CI job asking for `build/` means
|
|
283
|
+
* the workspace it checked out, and `runBuild` will `mkdir -p` whatever it is
|
|
284
|
+
* handed from wherever the process happens to be.
|
|
285
|
+
*/
|
|
286
|
+
export function artifactsDirFrom(args) {
|
|
287
|
+
const dir = getFlag(args, "--artifacts-dir");
|
|
288
|
+
return dir === undefined ? undefined : resolve(dir);
|
|
289
|
+
}
|
|
275
290
|
/** A filesystem stem that distinguishes runs of different commands and devices. */
|
|
276
291
|
export function runLabel(context, command) {
|
|
277
292
|
const device = context.destination
|
|
@@ -288,6 +303,9 @@ export function runAction(options) {
|
|
|
288
303
|
],
|
|
289
304
|
label: runLabel(options.context, options.command),
|
|
290
305
|
project: options.context.project,
|
|
306
|
+
...(options.context.artifactsDir !== undefined
|
|
307
|
+
? { outDir: options.context.artifactsDir }
|
|
308
|
+
: {}),
|
|
291
309
|
});
|
|
292
310
|
}
|
|
293
311
|
/**
|
package/dist/src/action.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.js","sourceRoot":"","sources":["../../src/action.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAuB,MAAM,cAAc,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAiB,MAAM,iBAAiB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EACL,QAAQ,EACR,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,SAAS,GACV,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACtE,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,aAAa,EACb,mBAAmB,GACpB,MAAM,eAAe,CAAC;AAEvB;;;;;;;GAOG;AAEH,qFAAqF;AACrF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,UAAU;IACV,UAAU;IACV,eAAe;IACf,UAAU;IACV,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,QAAQ;IACR,aAAa;IACb,YAAY;IACZ,gBAAgB;IAChB,QAAQ;IACR,WAAW;IACX,QAAQ;IACR,sBAAsB;IACtB,aAAa;IACb,UAAU;IACV,uBAAuB;IACvB,uBAAuB;IACvB,mBAAmB;IACnB,4BAA4B;IAC5B,cAAc;IACd,QAAQ;IACR,YAAY;IACZ,aAAa;IACb,kBAAkB;IAClB,UAAU;IACV,GAAG,aAAa;CACR,CAAC;AAEX,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,UAAU;IACV,UAAU;IACV,UAAU;IACV,eAAe;IACf,iBAAiB;IACjB,OAAO;IACP,QAAQ;IACR,aAAa;IACb,YAAY;IACZ,gBAAgB;IAChB,QAAQ;IACR,WAAW;IACX,aAAa;IACb,uBAAuB;IACvB,cAAc;IACd,YAAY;IACZ,aAAa;IACb,kBAAkB;IAClB,UAAU;IACV,GAAG,mBAAmB;CACd,CAAC;AAEX,0EAA0E;AAC1E,MAAM,CAAC,MAAM,eAAe,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2B7B,iBAAiB,EAAE,CAAC;AAEtB;;;GAGG;AACH,MAAM,UAAU,oBAAoB,CAClC,IAAc,EACd,OAAe;IAEf,OAAO;QACL,GAAG,YAAY,CAAC,IAAI,CAAC;QACrB,GAAG,YAAY,CAAC,IAAI,EAAE,OAAO,CAAC;QAC9B,GAAG,UAAU,CAAC,IAAI,CAAC;QACnB,GAAG,iBAAiB,CAAC,IAAI,CAAC;KAC3B,CAAC;AACJ,CAAC;AAED,SAAS,iBAAiB,CAAC,IAAc;IACvC,MAAM,OAAO,GAAG,UAAU,CAAC,IAAI,EAAE,kBAAkB,CAAC,CAAC;IACrD,OAAO,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,sBAAsB,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;AAChF,CAAC;AAED,MAAM,UAAU,GAA6B;IAC3C,KAAK,EAAE,CAAC,QAAQ,CAAC;IACjB,MAAM,EAAE,EAAE;IACV,OAAO,EAAE,CAAC,UAAU,CAAC;CACtB,CAAC;AAEF;;;;GAIG;AACH,SAAS,YAAY,CAAC,IAAc,EAAE,OAAe;IACnD,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IAC3C,IAAI,KAAK,KAAK,SAAS;QAAE,OAAO,EAAE,CAAC;IACnC,MAAM,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;IACjC,IAAI,MAAM,KAAK,SAAS,EAAE,CAAC;QACzB,MAAM,IAAI,QAAQ,CAAC,sBAAsB,KAAK,GAAG,EAAE,kBAAkB,EAAE;YACrE,yCAAyC;YACzC,kBAAkB,OAAO,sBAAsB;SAChD,CAAC,CAAC;IACL,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED;;;GAGG;AACH,SAAS,UAAU,CAAC,IAAc;IAChC,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;IACvC,IAAI,IAAI,KAAK,SAAS;QAAE,OAAO,EAAE,CAAC;IAClC,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC3B,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC9C,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,aAAa,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IAC/C,OAAO,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC;AACrC,CAAC;AAED;oEACoE;AACpE,SAAS,YAAY,CAAC,IAAc;IAClC,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;IACxC,OAAO,GAAG;QACR,CAAC,CAAC,CAAC,wBAAwB,EAAE,KAAK,EAAE,2BAA2B,EAAE,GAAG,CAAC;QACrE,CAAC,CAAC,EAAE,CAAC;AACT,CAAC;AAED,MAAM,eAAe,GAA2B;IAC9C,OAAO,EAAE,yBAAyB;IAClC,MAAM,EAAE,wBAAwB;IAChC,SAAS,EAAE,mCAAmC;CAC/C,CAAC;AAqBF,MAAM,CAAC,KAAK,UAAU,mBAAmB,CACvC,OAAmC;IAEnC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAClC,MAAM,OAAO,GAAG,cAAc,EAAE,CAAC;IAEjC,MAAM,OAAO,GAAG,WAAW,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;IAC9C,MAAM,UAAU,GAAG,OAAO,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IAClD,MAAM,UAAU,GAAG,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,UAAU,CAAC;IAEpD,IAAI,UAAU,IAAI,OAAO,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;QAC/C,kEAAkE;QAClE,oEAAoE;QACpE,MAAM,IAAI,QAAQ,CAChB,oEAAoE,EACpE,kBAAkB,EAClB;YACE,+EAA+E;SAChF,CACF,CAAC;IACJ,CAAC;IACD,IAAI,UAAU,IAAI,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,KAAK,SAAS,EAAE,CAAC;QAC1D,MAAM,IAAI,QAAQ,CAChB,iFAAiF,EACjF,kBAAkB,EAClB,CAAC,yDAAyD,CAAC,CAC5D,CAAC;IACJ,CAAC;IAED,MAAM,MAAM,GAAG,UAAU;QACvB,CAAC,CAAC,UAAU;YACV,CAAC,CAAC,aAAa;YACf,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC;QACrB,CAAC,CAAC,MAAM,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,EAAE,OAAO,CAAC,CAAC;IAErE,MAAM,cAAc,GAAG,OAAO,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC;IACtD,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;IACzC,MAAM,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,KAAK,KAAK,CAAC;IAE5D,MAAM,WAAW,GACf,CAAC,UAAU;QACX,CAAC,gBAAgB,IAAI,cAAc,KAAK,SAAS,IAAI,MAAM,KAAK,SAAS,CAAC;QACxE,CAAC,CAAC,MAAM,kBAAkB,CAAC;YACvB,OAAO;YACP,MAAM;YACN,GAAG,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3C,GAAG,CAAC,cAAc,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,cAAc,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;SACjE,CAAC;QACJ,CAAC,CAAC,SAAS,CAAC;IAEhB,MAAM,UAAU,GAAG,WAAW,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IACpD,KAAK,MAAM,SAAS,IAAI,UAAU,EAAE,CAAC;QACnC,IAAI,CAAC,CAAC,SAAS,IAAI,eAAe,CAAC,EAAE,CAAC;YACpC,MAAM,IAAI,QAAQ,CAChB,sBAAsB,SAAS,GAAG,EAClC,kBAAkB,EAClB,CAAC,iDAAiD,CAAC,CACpD,CAAC;QACJ,CAAC;IACH,CAAC;IAED,MAAM,QAAQ,GAAG,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;IAChD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;YAC3B,MAAM,IAAI,QAAQ,CAChB,qCAAqC,OAAO,GAAG,EAC/C,kBAAkB,EAClB;gBACE,iBAAiB;oBACf,OAAO;oBACP,8CAA8C;aACjD,CACF,CAAC;QACJ,CAAC;IACH,CAAC;IAED,MAAM,aAAa,GAAG,OAAO,CAAC,IAAI,EAAE,iBAAiB,CAAC,CAAC;IACvD,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACnC,MAAM,SAAS,GAAG,OAAO,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;IAC/C,MAAM,QAAQ,GAAG,OAAO,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;IAC7C,MAAM,WAAW,GAAG,OAAO,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;IACpD,MAAM,IAAI,GAAG,UAAU,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;IAExC,MAAM,kBAAkB,GAAG,UAAU,CAAC,IAAI,EAAE,uBAAuB,CAAC,CAAC;IAErE,MAAM,cAAc,GAAG;QACrB,GAAG,OAAO,CAAC,KAAK;QAChB,GAAG,CAAC,UAAU;YACZ,CAAC,CAAC,UAAU;gBACV,CAAC,CAAC,CAAC,aAAa,CAAC;gBACjB,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACpD,CAAC,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;QACxB,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,cAAc,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC/D,GAAG,CAAC,kBAAkB,KAAK,SAAS;YAClC,CAAC,CAAC,CAAC,sBAAsB,EAAE,MAAM,CAAC,kBAAkB,CAAC,CAAC;YACtD,CAAC,CAAC,EAAE,CAAC;QACP,GAAG,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,gBAAgB,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC3D,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC7B,GAAG,WAAW,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACjE,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC/C,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC5C,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACzD,GAAG,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACtD,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC;YACnC,eAAe,CAAC,SAAS,CAAW;YACpC,KAAK;SACN,CAAC;QACF,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACjE,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC1E,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,mBAAmB,CAAC;YACpC,CAAC,CAAC,CAAC,6BAA6B,CAAC;YACjC,CAAC,CAAC,EAAE,CAAC;QACP,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,4BAA4B,CAAC;YAC7C,CAAC,CAAC,CAAC,yBAAyB,CAAC;YAC7B,CAAC,CAAC,EAAE,CAAC;QACP,0EAA0E;QAC1E,2DAA2D;QAC3D,sBAAsB;QACtB,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,sBAAsB,CAAC;YACvC,CAAC,CAAC,CAAC,2BAA2B,CAAC;YAC/B,CAAC,CAAC,EAAE,CAAC;QACP,GAAG,oBAAoB,CAAC,IAAI,EAAE,OAAO,CAAC;QACtC,GAAG,WAAW,CAAC,IAAI,CAAC;QACpB,GAAG,CAAC,OAAO,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,yBAAyB,CAAC,CAAC;QAC/D,GAAG,QAAQ;KACZ,CAAC;IAEF,OAAO;QACL,OAAO;QACP,MAAM;QACN,WAAW,EAAE,WAAW,EAAE,SAAS;QACnC,cAAc;QACd,SAAS,EAAE,UAAU,CAAC,IAAI,EAAE,cAAc,CAAC,IAAI,EAAE;QACjD,IAAI,EAAE,OAAO,CAAC,IAAI,EAAE,QAAQ,CAAC;KAC9B,CAAC;AACJ,CAAC;AAED,mFAAmF;AACnF,MAAM,UAAU,QAAQ,CAAC,OAAqB,EAAE,OAAe;IAC7D,MAAM,MAAM,GAAG,OAAO,CAAC,WAAW;QAChC,CAAC,CAAC,IAAI,eAAe,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE;QAC5C,CAAC,CAAC,EAAE,CAAC;IACP,OAAO,GAAG,OAAO,CAAC,MAAM,GAAG,MAAM,IAAI,OAAO,EAAE,CAAC;AACjD,CAAC;AAWD,MAAM,UAAU,SAAS,CAAC,OAAyB;IACjD,OAAO,QAAQ,CAAC;QACd,IAAI,EAAE;YACJ,GAAG,OAAO,CAAC,OAAO,CAAC,cAAc;YACjC,GAAG,CAAC,OAAO,CAAC,SAAS,IAAI,EAAE,CAAC;YAC5B,GAAG,OAAO,CAAC,OAAO;SACnB;QACD,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC;QACjD,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,OAAO;KACjC,CAAC,CAAC;AACL,CAAC;AAeD;;;;;GAKG;AACH,MAAM,CAAC,KAAK,UAAU,YAAY,CAChC,OAA4B;IAE5B,MAAM,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IACjC,MAAM,OAAO,GAAG,MAAM,gBAAgB,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC;IAE9E,MAAM,MAAM,GAAG,aAAa,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAC9C,MAAM,gBAAgB,GAAG,aAAa,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC;IAClE,MAAM,QAAQ,GAAG,aAAa,CAAC;QAC7B,GAAG,CAAC,OAAO,EAAE,QAAQ,IAAI,EAAE,CAAC;QAC5B,GAAG,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,gBAAgB,IAAI,EAAE,CAAC,CAAC;KAC/D,CAAC,CAAC;IACH,MAAM,SAAS,GAAG,GAAG,CAAC,QAAQ,KAAK,CAAC,CAAC;IAErC,0EAA0E;IAC1E,uEAAuE;IACvE,4DAA4D;IAC5D,IAAI,CAAC,SAAS,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACtC,MAAM,MAAM,GAAG,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QAC5C,IAAI,MAAM,EAAE,CAAC;YACX,MAAM,IAAI,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,IAAI,EAAE;gBAC9C,GAAG,MAAM,CAAC,WAAW;gBACrB,oBAAoB,SAAS,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;aAC7C,CAAC,CAAC;QACL,CAAC;IACH,CAAC;IAED,MAAM,MAAM,GAAa;QACvB,YAAY,CAAC;YACX,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,QAAQ;YAChD,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,GAAG,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YACpE,QAAQ,EAAE,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC;YAC/B,GAAG,CAAC,OAAO,CAAC,KAAK,IAAI,EAAE,CAAC;SACzB,CAAC;KACH,CAAC;IAEF,MAAM,UAAU,GAAG,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IACzE,IAAI,UAAU,CAAC,KAAK;QAAE,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;IAEpD,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC;QACrB,IAAI,gBAAgB,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAChC,MAAM,CAAC,IAAI,CACT,gBAAgB,CACd,QAAQ,EACR,gBAAgB,EAChB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAC5C,CAAC,KAAK,CACR,CAAC;QACJ,CAAC;aAAM,IAAI,SAAS,EAAE,CAAC;YACrB,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,MAAM,EAAE,yBAAyB,EAAE,CAAC,CAAC,CAAC;QACnE,CAAC;IACH,CAAC;IAED,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACxB,MAAM,CAAC,IAAI,CACT,gBAAgB,CACd,UAAU,EACV,QAAQ,EACR,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CACpC,CAAC,KAAK,CACR,CAAC;IACJ,CAAC;SAAM,IAAI,SAAS,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;QAC1C,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC7C,CAAC;IAED,IAAI,CAAC,SAAS,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACtC,MAAM,IAAI,GAAG,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QACtC,IAAI,IAAI;YAAE,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9B,CAAC;IAED,MAAM,CAAC,IAAI,CACT,YAAY,CAAC;QACX,GAAG,EAAE,SAAS,CAAC,GAAG,CAAC,OAAO,CAAC;QAC3B,MAAM,EAAE,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC;KAClC,CAAC,CACH,CAAC;IAEF,MAAM,KAAK,GAAa,EAAE,CAAC;IAC3B,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC1B,KAAK,CAAC,IAAI,CACR,wBAAwB,OAAO,CAAC,OAAO,iBAAiB,MAAM,CAAC,MAAM,kBAAkB,MAAM,CAAC,MAAM,SAAS,CAC9G,CAAC;IACJ,CAAC;IACD,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,QAAQ,CAAC,MAAM,GAAG,EAAE,EAAE,CAAC;QAC1C,KAAK,CAAC,IAAI,CACR,wBAAwB,OAAO,CAAC,OAAO,yBAAyB,QAAQ,CAAC,MAAM,WAAW,CAC3F,CAAC;IACJ,CAAC;IACD,IAAI,CAAC,SAAS,EAAE,CAAC;QACf,KAAK,CAAC,IAAI,CACR,+BAA+B,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,2CAA2C,CACpG,CAAC;IACJ,CAAC;IACD,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;IAE/B,yEAAyE;IACzE,oEAAoE;IACpE,IAAI,CAAC,SAAS;QAAE,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC;IACrC,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAC9B,CAAC"}
|
|
1
|
+
{"version":3,"file":"action.js","sourceRoot":"","sources":["../../src/action.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const ANALYZE_HELP = "usage: xcodebuild-axi analyze [flags]\nRuns the static analyzer and reports its findings with exact source locations.\nAnalyzer findings are the payload here, not a count \u2014 unlike `build`, where\nthey are noise alongside compiler warnings.\nflags[
|
|
1
|
+
export declare const ANALYZE_HELP = "usage: xcodebuild-axi analyze [flags]\nRuns the static analyzer and reports its findings with exact source locations.\nAnalyzer findings are the payload here, not a count \u2014 unlike `build`, where\nthey are noise alongside compiler warnings.\nflags[42]:\n --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode\nexit:\n 0 the analyze action succeeded (findings do not fail it), 1 it failed, 2 usage error\nexamples:\n xcodebuild-axi analyze\n xcodebuild-axi analyze --scheme MyApp --full\n";
|
|
2
2
|
export declare function analyzeCommand(args: string[]): Promise<string>;
|
|
@@ -4,7 +4,7 @@ export const ANALYZE_HELP = `usage: xcodebuild-axi analyze [flags]
|
|
|
4
4
|
Runs the static analyzer and reports its findings with exact source locations.
|
|
5
5
|
Analyzer findings are the payload here, not a count — unlike \`build\`, where
|
|
6
6
|
they are noise alongside compiler warnings.
|
|
7
|
-
flags[
|
|
7
|
+
flags[42]:
|
|
8
8
|
${BUILD_FLAG_HELP}
|
|
9
9
|
exit:
|
|
10
10
|
0 the analyze action succeeded (findings do not fail it), 1 it failed, 2 usage error
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const ARCHIVE_HELP = "usage: xcodebuild-axi archive [flags]\nArchives a scheme and reports the archive's identity \u2014 bundle id, version, and\nbuild number \u2014 so the next step does not need a second lookup.\nflags[
|
|
1
|
+
export declare const ARCHIVE_HELP = "usage: xcodebuild-axi archive [flags]\nArchives a scheme and reports the archive's identity \u2014 bundle id, version, and\nbuild number \u2014 so the next step does not need a second lookup.\nflags[47]:\n --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode\n --archive-path <path> where to write the .xcarchive (default: the tool's cache)\n --auth-key-path <path> App Store Connect API key (.p8); requires the two flags below\n --auth-key-id <id> key identifier for that key\n --auth-key-issuer <id> issuer identifier for that key\n --allow-device-registration let xcodebuild register the destination device on the portal\nnote:\n Archiving signs by default, unlike `build` \u2014 an unsigned archive cannot be\n exported. Pass --allow-provisioning to let xcodebuild fetch profiles.\nexit:\n 0 archive succeeded, 1 it failed, 2 usage error\nexamples:\n xcodebuild-axi archive --scheme MyApp\n xcodebuild-axi archive --scheme MyApp --archive-path build/MyApp.xcarchive\n";
|
|
2
2
|
export declare function archiveCommand(args: string[]): Promise<string>;
|
|
@@ -8,7 +8,7 @@ import { getFlag, rejectUnknownFlags } from "../args.js";
|
|
|
8
8
|
export const ARCHIVE_HELP = `usage: xcodebuild-axi archive [flags]
|
|
9
9
|
Archives a scheme and reports the archive's identity — bundle id, version, and
|
|
10
10
|
build number — so the next step does not need a second lookup.
|
|
11
|
-
flags[
|
|
11
|
+
flags[47]:
|
|
12
12
|
${BUILD_FLAG_HELP}
|
|
13
13
|
--archive-path <path> where to write the .xcarchive (default: the tool's cache)
|
|
14
14
|
${AUTH_FLAG_HELP}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const BUILD_HELP = "usage: xcodebuild-axi build [flags]\nBuilds a scheme and reports only what failed, with exact source locations.\nflags[
|
|
1
|
+
export declare const BUILD_HELP = "usage: xcodebuild-axi build [flags]\nBuilds a scheme and reports only what failed, with exact source locations.\nflags[46]:\n --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode\n --clean clean before building\n --for-testing build the tests too and emit an .xctestrun (build-for-testing)\n --install run the install action instead of build\n --docs build documentation (docbuild) instead of build\nexit:\n 0 build succeeded, 1 build failed, 2 usage error\nexamples:\n xcodebuild-axi build\n xcodebuild-axi build --scheme MyApp --device \"iPhone 17 Pro\"\n xcodebuild-axi build --scheme MyApp --configuration Release --clean\n xcodebuild-axi build --scheme MyApp --for-testing\n";
|
|
2
2
|
export declare function buildCommand(args: string[]): Promise<string>;
|
|
@@ -3,7 +3,7 @@ import { AxiError } from "../errors.js";
|
|
|
3
3
|
import { hasFlag, rejectUnknownFlags } from "../args.js";
|
|
4
4
|
export const BUILD_HELP = `usage: xcodebuild-axi build [flags]
|
|
5
5
|
Builds a scheme and reports only what failed, with exact source locations.
|
|
6
|
-
flags[
|
|
6
|
+
flags[46]:
|
|
7
7
|
${BUILD_FLAG_HELP}
|
|
8
8
|
--clean clean before building
|
|
9
9
|
--for-testing build the tests too and emit an .xctestrun (build-for-testing)
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const TEST_HELP = "usage: xcodebuild-axi test [flags]\nRuns a scheme's tests and reports the counts plus only the failures.\nflags[
|
|
1
|
+
export declare const TEST_HELP = "usage: xcodebuild-axi test [flags]\nRuns a scheme's tests and reports the counts plus only the failures.\nflags[67]:\n --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode\n --test-plan <name> test plan to run\n --only <id> run only this test/class/target; repeatable or comma-separated\n --skip <id> skip this test/class/target; repeatable or comma-separated\n --coverage collect code coverage and report the overall percentage\n --without-building test already-built products (test-without-building)\n --xctestrun <path> test from an .xctestrun file instead of a scheme\n --parallel <n> exact number of parallel test runners\n --no-parallel disable parallel testing\n --iterations <n> run the tests this many times\n --retry retry failures, up to --iterations (default 3)\n --until-failure repeat until something fails, up to --iterations (default 100)\n --language <iso639> run in this language\n --region <iso3166> run in this region\n --diagnostics collect verbose diagnostics on failure\n --perf-diagnostics collect performance traces and memgraphs for performance tests\n --relaunch relaunch the process between repetitions\n --only-configuration <name> run only this test configuration; repeatable\n --skip-configuration <name> skip this test configuration; repeatable\n --max-workers <n> cap on parallel test runners\n --max-sim-destinations <n> cap on simulator destinations tested concurrently\n --max-device-destinations <n> cap on device destinations tested concurrently\n --default-test-timeout <secs> default per-test allowance when timeouts are on\n --test-products <path> where to find the built test products\n --test-timeout <secs> per-test execution allowance (default: 300, 0 disables)\n --max-failures <n> failures to list before summarizing the rest (default: 20)\nexit:\n 0 all tests passed, 1 a test or the build failed, 2 usage error\nexamples:\n xcodebuild-axi test\n xcodebuild-axi test --scheme MyApp --device \"iPhone 17 Pro\"\n xcodebuild-axi test --scheme MyApp --only MyAppTests/CheckoutTests\n xcodebuild-axi test --scheme MyApp --coverage\n";
|
|
2
2
|
export declare function testCommand(args: string[]): Promise<string>;
|
|
@@ -7,7 +7,7 @@ import { duration, renderFields, renderHelp, renderList, renderOutput, tildePath
|
|
|
7
7
|
import { getFlag, getIntFlag, getListFlag, hasFlag, rejectUnknownFlags, } from "../args.js";
|
|
8
8
|
export const TEST_HELP = `usage: xcodebuild-axi test [flags]
|
|
9
9
|
Runs a scheme's tests and reports the counts plus only the failures.
|
|
10
|
-
flags[
|
|
10
|
+
flags[67]:
|
|
11
11
|
${BUILD_FLAG_HELP}
|
|
12
12
|
--test-plan <name> test plan to run
|
|
13
13
|
--only <id> run only this test/class/target; repeatable or comma-separated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const TESTS_HELP = "usage: xcodebuild-axi tests [flags]\nLists the tests a scheme would run, without running them. Grouped by suite,\nbecause a thousand identifiers is not an answer.\nflags[
|
|
1
|
+
export declare const TESTS_HELP = "usage: xcodebuild-axi tests [flags]\nLists the tests a scheme would run, without running them. Grouped by suite,\nbecause a thousand identifiers is not an answer.\nflags[46]:\n --scheme <name> scheme to act on (required only when the project has more than one)\n --target <name> build a target instead of a scheme; repeatable (project only)\n --all-targets build every target in the project (project only)\n --device <name> simulator or device name, e.g. \"iPhone 17 Pro\" (default: newest simulator)\n --destination <spec> raw xcodebuild destination specifier, passed through untouched\n --configuration <name> build configuration (default: the scheme's own)\n --sdk <name> base SDK, e.g. iphonesimulator\n --arch <arch> architecture to build; repeatable or comma-separated\n --toolchain <name> toolchain identifier or name\n --xcconfig <path> apply build settings from this file as overrides\n --derived-data <path> derived data directory\n --artifacts-dir <path> where to write this run's log and .xcresult (default: the tool's cache)\n --jobs <n> maximum concurrent build operations\n --setting KEY=VALUE build setting override; repeatable or comma-separated\n --sign allow code signing (off by default, so simulator builds need no team)\n --allow-provisioning let xcodebuild talk to the developer portal for profiles\n --sanitizer <name> address, thread, or undefined; repeatable or comma-separated\n --timing report per-command build timings\n --destination-timeout <secs> how long to wait for the destination device\n --parallelize-targets build independent targets in parallel\n --hide-script-env omit shell script environment variables from the log\n --skip-unavailable-actions skip scheme actions that cannot run instead of failing\n --max-errors <n> errors to list before summarizing the rest (default: 20)\n --full list every warning instead of the first 10\n --codesize <dir> write a code size profile to this directory\n --log-level <level> quiet, normal, or verbose \u2014 how much lands in the log file\n --bundle-version <n> result bundle format version (default: xcodebuild's own)\n --stream <path> also write xcodebuild's live result stream here\n --offline resolve using only the versions already in Package.resolved\n --cache <path> clone remote packages into this directory\n --package-cache <path> shared package cache directory (across projects)\n --no-auto-resolve never resolve automatically; fail if Package.resolved is stale\n --skip-package-updates use the packages already cloned, without checking for updates\n --no-package-cache ignore the shared package repository cache\n --skip-plugin-validation trust build plugins without prompting\n --skip-signature-validation do not verify package signatures\n --package-auth <kind> keychain or netrc\n --registry-url <url> default package registry\n --scm-to-registry <kind> none, identity, or swift-package-registry\n --fingerprint-policy <kind> strict or warn\n --signing-entity-policy <kind> strict or warn\n --scm-provider <kind> system or xcode\n --test-plan <name> test plan to enumerate\n --filter <text> only suites or tests whose identifier contains this\n --list print every test identifier instead of per-suite counts\n --max <n> rows to list before summarizing the rest (default: 40)\nnote:\n Enumerating compiles the test bundle, so the first run is as slow as a build.\n It is still far cheaper than running the tests to find out what they are.\nexamples:\n xcodebuild-axi tests --scheme MyApp\n xcodebuild-axi tests --scheme MyApp --filter AppFeature --list\n";
|
|
2
2
|
export declare function testsCommand(args: string[]): Promise<string>;
|
|
3
3
|
/**
|
|
4
4
|
* Collapse `Target/Suite/testName()` identifiers into one row per suite.
|
|
@@ -8,7 +8,7 @@ import { getFlag, getIntFlag, hasFlag, rejectUnknownFlags } from "../args.js";
|
|
|
8
8
|
export const TESTS_HELP = `usage: xcodebuild-axi tests [flags]
|
|
9
9
|
Lists the tests a scheme would run, without running them. Grouped by suite,
|
|
10
10
|
because a thousand identifiers is not an answer.
|
|
11
|
-
flags[
|
|
11
|
+
flags[46]:
|
|
12
12
|
${BUILD_FLAG_HELP}
|
|
13
13
|
--test-plan <name> test plan to enumerate
|
|
14
14
|
--filter <text> only suites or tests whose identifier contains this
|
package/dist/src/surface.js
CHANGED
|
@@ -270,8 +270,8 @@ export const OPTION_COVERAGE = {
|
|
|
270
270
|
why: "set from the .xcodeproj found in the working directory",
|
|
271
271
|
},
|
|
272
272
|
"-resultBundlePath": {
|
|
273
|
-
status: "
|
|
274
|
-
|
|
273
|
+
status: "exposed",
|
|
274
|
+
via: "build --artifacts-dir",
|
|
275
275
|
},
|
|
276
276
|
"-skipMacroValidation": {
|
|
277
277
|
status: "always",
|
package/dist/src/surface.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"surface.js","sourceRoot":"","sources":["../../src/surface.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"surface.js","sourceRoot":"","sources":["../../src/surface.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED