Fix CI
Release rolling / release (push) Successful in 9m54s

This commit is contained in:
2026-08-18 18:30:46 -04:00
parent 68a564b93e
commit db6dfa22e3
6 changed files with 7 additions and 7 deletions
+1
View File
@@ -214,6 +214,7 @@ function coreutilsLibPath(name) {
export async function build() {
await buildManDb()
const runtime = await readFile(join(__dirname, 'lib/runtime.js'), 'utf8')
await mkdir(kernelBin, { recursive: true })
await mkdir(seederKernelBin, { recursive: true })
@@ -1,5 +1,5 @@
/**
* Loads lib/agent-web-fetch.js in a VM (same bundle shape as /bin/agent preamble).
* Loads lib/agent/agent-web-fetch.js in a VM (same bundle shape as /bin/agent preamble).
*/
import test from 'brittle'
import { readFileSync } from 'node:fs'
@@ -7,7 +7,7 @@ const __dirname = dirname(fileURLToPath(import.meta.url))
const coreutilsRoot = join(__dirname, '..')
test('p2p suite reads peer_details proc for swarm snapshots', async (t) => {
const src = await readFile(join(coreutilsRoot, 'lib/p2p-suite.js'), 'utf8')
const src = await readFile(join(coreutilsRoot, 'lib/p2p/p2p-suite.js'), 'utf8')
t.ok(src.includes('/proc/bare_os/peer_details.json'), 'reads peer details proc')
t.ok(src.includes('out.peers = merged.slice(0, 128)'), 'merges swarm + peer details rows')
})