xcodebuild-axi 0.1.1 → 0.1.3
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
CHANGED
|
@@ -6,6 +6,38 @@ Notable changes to `xcodebuild-axi`. Versions follow
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.3] - 2026-09-21
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- `setup hooks` installed a session-start hook with a **10 second timeout**,
|
|
14
|
+
which is not long enough. The home view runs `xcodebuild -list`, and against
|
|
15
|
+
a workspace with 16 local Swift packages that resolves the package graph on a
|
|
16
|
+
cold run: measured 10.9s cold, then 2.9s and 1.4s warm. Cold is exactly the
|
|
17
|
+
case a session start hits, so the hook would be killed before it produced
|
|
18
|
+
anything — silently, with no error to notice. The timeout is now 30s, which
|
|
19
|
+
is a ceiling rather than a cost: a warm run still returns in a second or two.
|
|
20
|
+
|
|
21
|
+
Re-run `xcodebuild-axi setup hooks` to repair an already-installed hook; it
|
|
22
|
+
updates the existing entry in place rather than adding a second one.
|
|
23
|
+
|
|
24
|
+
## [0.1.2] - 2026-09-21
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- The no-argument home view reported a **build** as a passing test run. Found
|
|
29
|
+
by installing 0.1.1 globally and pointing it at a real workspace, where the
|
|
30
|
+
last run rendered as `Test - MyApp on unknown — 0 passed`.
|
|
31
|
+
|
|
32
|
+
`xcresulttool` answers the test-shaped query for any bundle, so a build comes
|
|
33
|
+
back as `{title: "Test - X", totalTestCount: 0, result: "unknown"}` rather
|
|
34
|
+
than as nothing, and the guard tested for `undefined` when the count is `0`.
|
|
35
|
+
Since this line is what a session-start hook puts in front of an agent, it
|
|
36
|
+
was the one thing in the tool most likely to be believed and least likely to
|
|
37
|
+
be checked. The bundle's own name records which command wrote it, so that is
|
|
38
|
+
now the signal; a run that recorded no tests says so instead of showing a
|
|
39
|
+
zero verdict.
|
|
40
|
+
|
|
9
41
|
## [0.1.1] - 2026-09-21
|
|
10
42
|
|
|
11
43
|
No code changes. The published files are byte-identical to 0.1.0.
|
|
@@ -43,6 +75,8 @@ First release.
|
|
|
43
75
|
- 100% of the 117 options `xcodebuild -help` lists are covered, declared in
|
|
44
76
|
`src/surface.ts` and checked against the installed Xcode in CI.
|
|
45
77
|
|
|
46
|
-
[unreleased]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.
|
|
78
|
+
[unreleased]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.3...HEAD
|
|
79
|
+
[0.1.3]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.2...v0.1.3
|
|
80
|
+
[0.1.2]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.1...v0.1.2
|
|
47
81
|
[0.1.1]: https://github.com/alexrrouse/xcodebuild-axi/compare/v0.1.0...v0.1.1
|
|
48
82
|
[0.1.0]: https://github.com/alexrrouse/xcodebuild-axi/releases/tag/v0.1.0
|
|
@@ -7,3 +7,8 @@
|
|
|
7
7
|
* that takes more than a moment — `-list -json` and one result bundle read.
|
|
8
8
|
*/
|
|
9
9
|
export declare function homeCommand(): Promise<string>;
|
|
10
|
+
/**
|
|
11
|
+
* Which command wrote a bundle, from the name `runLabel` gave it:
|
|
12
|
+
* `<scheme>[-<device>]-<command>.xcresult`.
|
|
13
|
+
*/
|
|
14
|
+
export declare function runKind(path: string): string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { readdirSync, statSync } from "node:fs";
|
|
2
|
-
import { join } from "node:path";
|
|
2
|
+
import { basename, join } from "node:path";
|
|
3
3
|
import { resolveProject } from "../context.js";
|
|
4
4
|
import { listSchemes } from "../scheme.js";
|
|
5
5
|
import { artifactDir } from "../xcodebuild.js";
|
|
@@ -84,8 +84,22 @@ async function describeLastRun(project) {
|
|
|
84
84
|
return undefined;
|
|
85
85
|
const summary = await readTestSummary(newest.path).catch(() => undefined);
|
|
86
86
|
const when = relativeTime(newest.mtime / 1000);
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
const where = `see \`xcodebuild-axi result ${tildePath(newest.path)}\``;
|
|
88
|
+
const kind = runKind(newest.path);
|
|
89
|
+
// `xcresulttool` answers the test-shaped query for *any* bundle, so a build
|
|
90
|
+
// comes back as `{title: "Test - X", totalTestCount: 0, result: "unknown"}`
|
|
91
|
+
// rather than as nothing. Reading that as a verdict rendered a build as
|
|
92
|
+
// "Test - X on unknown — 0 passed", which is the shape of a clean pass and
|
|
93
|
+
// was observed on a real build bundle. The old guard did not catch it
|
|
94
|
+
// because it tested for `undefined` and the count is `0`.
|
|
95
|
+
//
|
|
96
|
+
// Which command wrote the bundle is not a guess: `runLabel` names it
|
|
97
|
+
// `<scheme>[-<device>]-<command>`, so the suffix is authoritative.
|
|
98
|
+
if (kind !== "test") {
|
|
99
|
+
return `${when} — ${kind} — ${where}`;
|
|
100
|
+
}
|
|
101
|
+
if (!summary || !summary.totalTestCount) {
|
|
102
|
+
return `${when} — test recorded no tests — ${where}`;
|
|
89
103
|
}
|
|
90
104
|
const failed = summary.failedTests ?? 0;
|
|
91
105
|
const device = describeDevice(summary.devicesAndConfigurations?.[0]?.device);
|
|
@@ -94,4 +108,16 @@ async function describeLastRun(project) {
|
|
|
94
108
|
: `${summary.passedTests ?? 0} passed`;
|
|
95
109
|
return `${summary.title ?? "test"} on ${device} — ${verdict} (${when})`;
|
|
96
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* Which command wrote a bundle, from the name `runLabel` gave it:
|
|
113
|
+
* `<scheme>[-<device>]-<command>.xcresult`.
|
|
114
|
+
*/
|
|
115
|
+
export function runKind(path) {
|
|
116
|
+
const stem = basename(path, ".xcresult");
|
|
117
|
+
const tail = stem.split("-").pop();
|
|
118
|
+
// `basename` leaves the extension alone when stripping it would leave
|
|
119
|
+
// nothing, so a degenerate ".xcresult" comes back whole. A command name
|
|
120
|
+
// always starts with a letter, which is enough to tell the two apart.
|
|
121
|
+
return tail && /^[A-Za-z]/.test(tail) ? tail : "run";
|
|
122
|
+
}
|
|
97
123
|
//# sourceMappingURL=home.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"home.js","sourceRoot":"","sources":["../../../src/commands/home.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"home.js","sourceRoot":"","sources":["../../../src/commands/home.ts"],"names":[],"mappings":"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"}
|
|
@@ -31,6 +31,20 @@ const FLAGS = ["--project", "--status", "--uninstall"];
|
|
|
31
31
|
* as soon as the checkout moved.
|
|
32
32
|
*/
|
|
33
33
|
const MARKER = "xcodebuild-axi";
|
|
34
|
+
/**
|
|
35
|
+
* How long the session-start hook is allowed to take.
|
|
36
|
+
*
|
|
37
|
+
* The SDK defaults to 10s, which is not enough. The home view runs
|
|
38
|
+
* `xcodebuild -list`, and against a workspace with 16 local Swift packages
|
|
39
|
+
* that resolves the package graph on a cold run: measured 10.9s cold, then
|
|
40
|
+
* 2.9s and 1.4s warm. Cold is exactly the case a session start hits, and a
|
|
41
|
+
* hook that times out contributes nothing at all — the whole point of it is
|
|
42
|
+
* lost silently, with no error to notice.
|
|
43
|
+
*
|
|
44
|
+
* 30s is headroom over the slowest real measurement rather than a guess. It is
|
|
45
|
+
* a ceiling, not a cost: a warm run still returns in a second or two.
|
|
46
|
+
*/
|
|
47
|
+
const HOOK_TIMEOUT_SECONDS = 30;
|
|
34
48
|
export async function setupCommand(args) {
|
|
35
49
|
rejectUnknownFlags(args, "setup", FLAGS);
|
|
36
50
|
const [target] = positionals(args, []);
|
|
@@ -64,7 +78,11 @@ export async function setupCommand(args) {
|
|
|
64
78
|
await uninstallSessionStartHooks({ scope, marker: MARKER });
|
|
65
79
|
return renderOutput([renderFields({ setup: "hooks removed", scope })]);
|
|
66
80
|
}
|
|
67
|
-
await installSessionStartHooks({
|
|
81
|
+
await installSessionStartHooks({
|
|
82
|
+
scope,
|
|
83
|
+
marker: MARKER,
|
|
84
|
+
timeoutSeconds: HOOK_TIMEOUT_SECONDS,
|
|
85
|
+
});
|
|
68
86
|
const status = sessionStartHookStatus({ scope, marker: MARKER });
|
|
69
87
|
return renderOutput([
|
|
70
88
|
renderFields({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/commands/setup.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,GAC3B,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEtE,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;;;;;;;;CAYzB,CAAC;AAEF,MAAM,KAAK,GAAG,CAAC,WAAW,EAAE,UAAU,EAAE,aAAa,CAAU,CAAC;AAEhE;;;;;;;;;;;;;GAaG;AACH,MAAM,MAAM,GAAG,gBAAgB,CAAC;AAEhC,MAAM,CAAC,KAAK,UAAU,YAAY,CAAC,IAAc;IAC/C,kBAAkB,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;IAEzC,MAAM,CAAC,MAAM,CAAC,GAAG,WAAW,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IACvC,IAAI,MAAM,KAAK,OAAO,EAAE,CAAC;QACvB,MAAM,IAAI,QAAQ,CAChB,MAAM,KAAK,SAAS;YAClB,CAAC,CAAC,sBAAsB;YACxB,CAAC,CAAC,yBAAyB,MAAM,GAAG,EACtC,kBAAkB,EAClB,CAAC,4BAA4B,CAAC,CAC/B,CAAC;IACJ,CAAC;IAED,MAAM,KAAK,GAAG,OAAO,CAAC,IAAI,EAAE,WAAW,CAAC;QACtC,CAAC,CAAE,SAAmB;QACtB,CAAC,CAAE,MAAgB,CAAC;IAEtB,IAAI,OAAO,CAAC,IAAI,EAAE,UAAU,CAAC,EAAE,CAAC;QAC9B,MAAM,MAAM,GAAG,sBAAsB,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;QACjE,OAAO,YAAY,CAAC;YAClB,YAAY,CAAC;gBACX,KAAK,EAAE,QAAQ;gBACf,KAAK;gBACL,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS;oBAC9B,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI,WAAW,CAAC;oBACrC,CAAC,CAAC,eAAe;gBACnB,KAAK,EAAE,MAAM,CAAC,KAAK,EAAE,SAAS;oBAC5B,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,IAAI,WAAW,CAAC;oBACpC,CAAC,CAAC,eAAe;gBACnB,QAAQ,EAAE,MAAM,CAAC,QAAQ,EAAE,SAAS;oBAClC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,IAAI,WAAW,CAAC;oBACvC,CAAC,CAAC,eAAe;aACpB,CAAC;SACH,CAAC,CAAC;IACL,CAAC;IAED,IAAI,OAAO,CAAC,IAAI,EAAE,aAAa,CAAC,EAAE,CAAC;QACjC,MAAM,0BAA0B,CAAC,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;QAC5D,OAAO,YAAY,CAAC,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC;IACzE,CAAC;IAED,MAAM,wBAAwB,CAAC,
|
|
1
|
+
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/commands/setup.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED