Ferrell Synthetic Intelligence commited on
Commit ·
95ce6a4
1
Parent(s): 0d13723
Record compiled ARM64 desktop artifact
Browse files- README.md +2 -0
- release/desktop-build-status.json +12 -0
- tests/smoke.mjs +4 -1
README.md
CHANGED
|
@@ -65,6 +65,8 @@ The Training Room is defined in `training/manifest.json` and `training/README.md
|
|
| 65 |
|
| 66 |
The first live three-pack scorecard is in `benchmarks/live-results-2026-08-10.json`: all three models passed function and planning smoke tasks, while all failed strict unified-diff formatting. AIDE therefore keeps every raw patch behind Veritas and human approval.
|
| 67 |
|
|
|
|
|
|
|
| 68 |
## Status
|
| 69 |
|
| 70 |
This is a pre-production engineering release. The Liquid checkpoint is not included until its exact artifact, license, checksum, and evaluation are confirmed. The Qwen weight is downloaded separately from its official repository and should be verified before offline use.
|
|
|
|
| 65 |
|
| 66 |
The first live three-pack scorecard is in `benchmarks/live-results-2026-08-10.json`: all three models passed function and planning smoke tasks, while all failed strict unified-diff formatting. AIDE therefore keeps every raw patch behind Veritas and human approval.
|
| 67 |
|
| 68 |
+
The ARM64 Rust desktop binary is compiled and hashed in `release/desktop-build-status.json`. Installer bundles still require a desktop host with a graphical session.
|
| 69 |
+
|
| 70 |
## Status
|
| 71 |
|
| 72 |
This is a pre-production engineering release. The Liquid checkpoint is not included until its exact artifact, license, checksum, and evaluation are confirmed. The Qwen weight is downloaded separately from its official repository and should be verified before offline use.
|
release/desktop-build-status.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "0.1.0-preflight",
|
| 3 |
+
"target": "aarch64-unknown-linux-gnu",
|
| 4 |
+
"status": "compiled",
|
| 5 |
+
"artifact": "aide-sovereign-workbench-linux-arm64",
|
| 6 |
+
"sha256": "aa50c4d4c396e58e15abd9f60523e0e78aaf10e1ac8b34d9f8a1370f70db9a49",
|
| 7 |
+
"notes": [
|
| 8 |
+
"Rust release binary compiled successfully on the ARM64 userspace.",
|
| 9 |
+
"GUI launch was not smoke-tested because this terminal has no active GTK display.",
|
| 10 |
+
"Installer bundle generation remains a desktop-host release step."
|
| 11 |
+
]
|
| 12 |
+
}
|
tests/smoke.mjs
CHANGED
|
@@ -12,7 +12,10 @@ const required = [
|
|
| 12 |
'community/casefile-schema.json', 'community/journal-desk.md', 'community/store-schema.json', 'community/store.json',
|
| 13 |
'languages/manifest.json',
|
| 14 |
'debuggers/manifest.json',
|
| 15 |
-
'benchmarks/manifest.json', 'training/manifest.json', 'desktop/tauri.conf.json',
|
|
|
|
|
|
|
|
|
|
| 16 |
'daemon/server.mjs', 'desktop/README.md'
|
| 17 |
];
|
| 18 |
for (const file of required) assert.ok(existsSync(path.join(root, file)), `missing ${file}`);
|
|
|
|
| 12 |
'community/casefile-schema.json', 'community/journal-desk.md', 'community/store-schema.json', 'community/store.json',
|
| 13 |
'languages/manifest.json',
|
| 14 |
'debuggers/manifest.json',
|
| 15 |
+
'benchmarks/manifest.json', 'benchmarks/live-results-2026-08-10.json', 'benchmarks/README.md', 'training/manifest.json', 'desktop/tauri.conf.json',
|
| 16 |
+
'capsules/manifest.schema.json', 'capsules/README.md', 'training/tinyliquid-adapter.json', 'replays/store.json', 'replays/README.md',
|
| 17 |
+
'release/desktop-build-status.json',
|
| 18 |
+
'scripts/e2e.mjs',
|
| 19 |
'daemon/server.mjs', 'desktop/README.md'
|
| 20 |
];
|
| 21 |
for (const file of required) assert.ok(existsSync(path.join(root, file)), `missing ${file}`);
|