fix: VS Code plugin crash when debugging/running on Windows (#8851) #1706
ci.yml
on: pull_request
Build windows-x64-baseline
/
Codegen
15s
Build windows-x64
/
Codegen
15s
Build darwin-aarch64
/
Build Submodules
12s
Build darwin-aarch64
/
Build C++
3m 14s
Build darwin-aarch64
/
...
/
Build Zig
17m 59s
Build darwin-x64-baseline
/
Build Submodules
13s
Build darwin-x64-baseline
/
Build C++
6m 0s
Build darwin-x64-baseline
/
...
/
Build Zig
9m 2s
Build darwin-x64
/
Build Submodules
13s
Build darwin-x64
/
Build C++
6m 3s
Build darwin-x64
/
...
/
Build Zig
8m 45s
Build linux-aarch64
/
...
/
Build & Link
34m 9s
Build linux-x64-baseline
/
...
/
Build & Link
15m 28s
Build linux-x64
/
...
/
Build & Link
14m 57s
Build windows-x64-baseline
/
Build Submodules
36s
Build windows-x64-baseline
/
...
/
Build Zig
9m 0s
Build windows-x64
/
Build Submodules
31s
Build windows-x64
/
...
/
Build Zig
9m 23s
Format
/
Format
56s
Lint
/
Lint
12s
Test linux-aarch64
/
Tests
14m 45s
Test linux-aarch64
/
Node.js Tests
0s
Test linux-x64-baseline
/
Tests
8m 19s
Test linux-x64-baseline
/
Node.js Tests
0s
Test linux-x64
/
Tests
8m 14s
Test linux-x64
/
Node.js Tests
0s
Test darwin-aarch64
/
Tests
12m 0s
Test darwin-aarch64
/
Node.js Tests
0s
Test darwin-x64-baseline
/
Tests
14m 57s
Test darwin-x64-baseline
/
Node.js Tests
0s
Test darwin-x64
/
Tests
14m 54s
Test darwin-x64
/
Node.js Tests
0s
Test windows-x64-baseline
/
Tests
15m 52s
Test windows-x64-baseline
/
Node.js Tests
0s
Cleanup
7s
Test windows-x64
/
Tests
12m 43s
Test windows-x64
/
Node.js Tests
0s
Annotations
59 errors and 27 warnings
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:40265/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.20ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [0.53ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [0.72ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [1.92ms]\n(pass) test throwing inside an async setTimeout [1.83ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [2.02ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:54:15\n at /home/runner/work/_temp/bun-test-tmp-7fsc_-1183951323_39xa/bun.test.8dCC7f/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [15.00ms]\n"
at /home/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
error: expect(received).toStrictEqual(expected):
test/js/node/child_process/child_process-node.test.js#L234
Expected: true
Received: false
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:234:7
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:201:17
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:199:52
at exitHandler (node:child_process:69:45)
at emit (node:events:161:95)
at #maybeClose (node:child_process:795:27)
at #handleOnExit (node:child_process:591:31)
|
Test linux-x64 / Tests
Process completed with exit code 1.
|
Test linux-x64 / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
Test linux-x64-baseline / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:42183/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.19ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [0.55ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [0.74ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [2.17ms]\n(pass) test throwing inside an async setTimeout [1.86ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [1.97ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:54:15\n at /home/runner/work/_temp/bun-test-tmp-hmtl_-1183924965_kf0d/bun.test.A8bEL2/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [16.00ms]\n"
at /home/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
error: expect(received).toStrictEqual(expected):
test/js/node/child_process/child_process-node.test.js#L234
Expected: true
Received: false
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:234:7
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:201:17
at /home/runner/work/bun/bun/test/js/node/child_process/child_process-node.test.js:199:52
at exitHandler (node:child_process:69:45)
at emit (node:events:161:95)
at #maybeClose (node:child_process:795:27)
at #handleOnExit (node:child_process:591:31)
|
Test linux-x64-baseline / Tests
Process completed with exit code 1.
|
Test windows-x64 / Tests
Process completed with exit code 1.
|
Test windows-x64 / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
error: expect(received).toEqual(expected):
test\cli\install\bunx.test.ts#L92
[
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
+ 1,
0,
0,
+ 1,
+ 1,
+ 1,
0,
0,
+ 1,
+ 1,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
0,
0
]
- Expected - 6
+ Received + 6
at C:\a\bun\bun\test\cli\install\bunx.test.ts:92:3
|
error: expect(received).toContain(expected):
test\cli\install\bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n============================================================\nBun Canary v1.1.10-canary.1 (e8e4d4eb) Windows x64\nArgs: \"C:/a/bun/bun/bun-windows-x64/bun.exe\" \"install\"\nFeatures: bunfig \nElapsed: 18ms | User: 0ms | Sys: 31ms\nRSS: 97.35MB | Peak: 97.35MB | Commit: 0.14GB | Faults: 23981\n\npanic(thread 3200): Internal assertion failure\noh no: Bun has crashed. This indicates a bug in Bun, not your code.\n\nTo send a redacted crash report to Bun's team,\nplease file a GitHub issue using the link below:\n\n https://bun.report/1.1.10/wi2e8e4d4eAgCg7x6L+sgwI6hu4F+hwCwgt/F269pGkxt1KCa\\KERNEL32.DLLgrmFCU\\ntdll.dll2q0fA0eNrzzCtJLcpLzFFILC5OLSrJzM9TSEvMzCktSgUAiSkKPg\n\n"
at C:\a\bun\bun\test\cli\install\bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test\cli\install\bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at C:\a\bun\bun\test\cli\install\bun-install.test.ts:2098:3
|
error: expect(received).toBeLessThan(expected):
test\cli\install\registry\bun-install-registry.test.ts#L5045
Expected: < 750000
Received: 937500n
at C:\a\bun\bun\test\cli\install\registry\bun-install-registry.test.ts:5045:9
|
error: Failed to install dependencies:
test\integration\next-pages\test\next-build.test.ts#L38
at C:\a\bun\bun\test\integration\next-pages\test\next-build.test.ts:38:11
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
ConnectionRefused: Unable to connect. Is the computer able to access the url?
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
Test windows-x64-baseline / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
error: expect(received).toEqual(expected):
test\cli\install\bunx.test.ts#L92
[
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
+ 1,
+ 1,
0,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1,
+ 1
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0
]
- Expected - 11
+ Received + 11
at C:\a\bun\bun\test\cli\install\bunx.test.ts:92:3
|
error: Test "doesn't error when the migration is out of sync" timed out after 5000ms
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: expect(received).toContain(expected):
test\cli\install\bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n============================================================\nBun Canary v1.1.10-canary.1 (e8e4d4eb) Windows x64 (baseline)\nArgs: \"C:/a/bun/bun/bun-windows-x64-baseline/bun.exe\" \"install\"\nFeatures: bunfig \nElapsed: 17ms | User: 15ms | Sys: 15ms\nRSS: 97.85MB | Peak: 97.85MB | Commit: 0.14GB | Faults: 24097\n\npanic(thread 2700): Internal assertion failure\noh no: Bun has crashed. This indicates a bug in Bun, not your code.\n\nTo send a redacted crash report to Bun's team,\nplease file a GitHub issue using the link below:\n\n https://bun.report/1.1.10/ei2e8e4d4eAgC4upzL+1jrI68q0F+qvCgxp7F4x4lGkh0uKCa\\KERNEL32.DLLgrmFCU\\ntdll.dll2q0fA0eNrzzCtJLcpLzFFILC5OLSrJzM9TSEvMzCktSgUAiSkKPg\n\n"
at C:\a\bun\bun\test\cli\install\bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test\cli\install\bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at C:\a\bun\bun\test\cli\install\bun-install.test.ts:2098:3
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: error
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
ConnectionRefused: Unable to connect. Is the computer able to access the url?
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
at
|
error: expect(received).toBe(expected):
test\js\node\process\process.test.js#L596
Expected: 42
Received: 1
at C:\a\bun\bun\test\js\node\process\process.test.js:596:3
|
Test windows-x64-baseline / Tests
Process completed with exit code 1.
|
Test darwin-x64 / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:50406/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /Users/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /Users/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toContain(expected):
test/cli/install/registry/bun-install-registry.test.ts#L1282
Expected to contain: "1.0.10"
Received: "{\n \"name\": \"a-dep\",\n \"version\": \"1.0.9\"\n}"
at /Users/runner/work/bun/bun/test/cli/install/registry/bun-install-registry.test.ts:1282:9
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.45ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [1.69ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [2.14ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [3.78ms]\n(pass) test throwing inside an async setTimeout [2.80ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [2.64ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:54:15\n at /Users/runner/work/_temp/bun-test-tmp-gqba_-1183450843_kkpi/bun.test.jSGKaI/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [27.00ms]\n"
at /Users/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
Test darwin-x64 / Tests
Process completed with exit code 1.
|
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:50407/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /Users/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /Users/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.42ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [0.63ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [1.45ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [3.03ms]\n(pass) test throwing inside an async setTimeout [2.52ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [3.04ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:54:15\n at /Users/runner/work/_temp/bun-test-tmp-6ojs_-1183464002_jcnd/bun.test.RJpX0F/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [23.00ms]\n"
at /Users/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
error: expect(received).not.toContain(expected):
test/js/bun/test/test-test.test.ts#L539
Expected to not contain: "unreachable code"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-timeout.test.js:\nerror: Test \"test timeouts when expected\" timed out after 10ms\n(fail) test timeouts when expected [75.14ms]\nerror: Test \"test timeouts when expected 2\" timed out after 10ms\n(fail) test timeouts when expected 2 [16.81ms]\nunreachable code\nerror: Test \"process doesn't hang on test with ref'd value\" timed out after 10ms\n(fail) process doesn't hang on test with ref'd value [83.88ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 files. [185.00ms]\n"
at /Users/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:539:3
|
Test darwin-x64-baseline / Tests
Process completed with exit code 1.
|
Test darwin-x64-baseline / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
Test darwin-aarch64 / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
Test darwin-aarch64 / Tests
Process completed with exit code 1.
|
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:50405/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /opt/namespace/githubrunner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /opt/namespace/githubrunner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.19ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [0.90ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [0.96ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [2.87ms]\n(pass) test throwing inside an async setTimeout [3.70ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [2.30ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:54:15\n at /opt/namespace/githubrunner/work/_temp/bun-test-tmp-5nci_-1183181534_2ijp/bun.test.RC2z5r/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [16.00ms]\n"
at /opt/namespace/githubrunner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
Test linux-aarch64 / Tests
Unexpected failure: Error: no webhook is given (no webhook is given)
|
error: expect(received).toContain(expected):
test/cli/install/bun-install.test.ts#L2052
Expected to contain: "Saved lockfile"
Received: "bun install v1.1.10-canary.1 (e8e4d4eb)\nResolving dependencies\n1 | \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\"bar\",\"versions\":{\"0.0.2_pre3\":{\"name\":\"bar\",\"version\":\"0.0.2_pre3\",\"dist\":{\"tarball\":\"http://localhost:50527/ba\n ^\nerror: Failed to parse dependency 0.0.2_pre3\n at bar:1:40\nResolved, downloaded and extracted [2]\nerror: No version matching \"^0.0.2_pre3+baz\" found for specifier \"bar\" (but package exists)\n"
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2052:3
|
error: expect(received).toEqual(expected):
test/cli/install/bun-install.test.ts#L2098
[
"",
+ "+ [email protected]",
- "+ [email protected]_4+cafe_b0ba",
"",
"1 package installed"
]
- Expected - 1
+ Received + 1
at /home/runner/work/bun/bun/test/cli/install/bun-install.test.ts:2098:3
|
error: expect(received).toBeLessThanOrEqual(expected):
test/js/bun/http/serve-body-leak.test.ts#L140
Expected: <= 16
Received: 19
at /home/runner/work/bun/bun/test/js/bun/http/serve-body-leak.test.ts:140:7
|
error: expect(received).toContain(expected):
test/js/bun/test/test-test.test.ts#L285
Expected to contain: "6 fail"
Received: "bun test v1.1.10-canary.1 (e8e4d4eb)\n\ntest-throwing-eventemitter.test.js:\n2 | import {test, expect} from 'bun:test';\n3 | import {EventEmitter} from 'events';\n4 | test('test throwing inside an EventEmitter fails the test', () => {\n5 | const emitter = new EventEmitter();\n6 | emitter.on('event', () => {\n7 | throw new Error('test throwing inside an EventEmitter #FAIL001');\n ^\nerror: test throwing inside an EventEmitter #FAIL001\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:7:13\n at emit (node:events:161:95)\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:9:5\n(fail) test throwing inside an EventEmitter fails the test [0.48ms]\n10 | });\n11 | \n12 | test('test throwing inside a queueMicrotask callback fails', async () => {\n13 | \n14 | queueMicrotask(() => {\n15 | throw new Error('test throwing inside an EventEmitter #FAIL002');\n ^\nerror: test throwing inside an EventEmitter #FAIL002\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:15:13\n(fail) test throwing inside a queueMicrotask callback fails [1.17ms]\n19 | });\n20 | \n21 | test('test throwing inside a process.nextTick callback fails', async () => {\n22 | \n23 | process.nextTick(() => {\n24 | throw new Error('test throwing inside an EventEmitter #FAIL003');\n ^\nerror: test throwing inside an EventEmitter #FAIL003\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:24:13\n(fail) test throwing inside a process.nextTick callback fails [1.85ms]\n29 | \n30 | test('test throwing inside a setTimeout', async () => {\n31 | await new Promise((resolve, reject) => {\n32 | setTimeout(() => {\n33 | resolve();\n34 | throw new Error('test throwing inside an EventEmitter #FAIL004');\n ^\nerror: test throwing inside an EventEmitter #FAIL004\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:34:15\n(fail) test throwing inside a setTimeout [3.89ms]\n(pass) test throwing inside an async setTimeout [4.17ms]\n\n# Unhandled error between tests\n-------------------------------\n39 | test('test throwing inside an async setTimeout', async () => {\n40 | await new Promise((resolve, reject) => {\n41 | setTimeout(async () => {\n42 | await 1;\n43 | resolve();\n44 | throw new Error('test throwing inside an EventEmitter #FAIL005');\n ^\nerror: test throwing inside an EventEmitter #FAIL005\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:44:15\n-------------------------------\n\n(pass) test throwing inside an async setTimeout no await [3.52ms]\n\n# Unhandled error between tests\n-------------------------------\n49 | \n50 | test('test throwing inside an async setTimeout no await' , async () => {\n51 | await new Promise((resolve, reject) => {\n52 | setTimeout(async () => {\n53 | resolve();\n54 | throw new Error('test throwing inside an EventEmitter #FAIL006');\n ^\nerror: test throwing inside an EventEmitter #FAIL006\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:54:15\n at /home/runner/work/_temp/bun-test-tmp-cgg5_-1182571396_g0q7/bun.test.GQWi5y/test-throwing-eventemitter.test.js:52:18\n-------------------------------\n\n\n 2 pass\n 4 fail\n 2 errors\nRan 6 tests across 1 files. [31.00ms]\n"
at /home/runner/work/bun/bun/test/js/bun/test/test-test.test.ts:285:3
|
Test linux-aarch64 / Tests
Process completed with exit code 1.
|
Format / Format
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: goto-bus-stop/setup-zig@c7b6cdd3adba8f8b96984640ff172c37c93f73ee. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Build darwin-aarch64 / Build C++
[email protected] has been deprecated because it is not supported upstream!
|
Build darwin-x64-baseline / Build C++
Treating cmake as a formula. For the cask, use homebrew/cask/cmake or specify the `--cask` flag.
|
Build darwin-x64-baseline / Build C++
pkg-config 0.29.2_3 is already installed and up-to-date.
To reinstall 0.29.2_3, run:
brew reinstall pkg-config
|
Build darwin-x64-baseline / Build C++
libtool 2.4.7 is already installed and up-to-date.
To reinstall 2.4.7, run:
brew reinstall libtool
|
Build darwin-x64-baseline / Build C++
cmake 3.29.3 is already installed and up-to-date.
To reinstall 3.29.3, run:
brew reinstall cmake
|
Build darwin-x64-baseline / Build C++
[email protected] 1.1.1w is already installed, it's just not linked.
To link this version, run:
brew link [email protected]
|
Build darwin-x64-baseline / Build C++
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK is set: not checking for outdated
dependents or dependents with broken linkage!
|
Build darwin-x64 / Build C++
Treating cmake as a formula. For the cask, use homebrew/cask/cmake or specify the `--cask` flag.
|
Build darwin-x64 / Build C++
pkg-config 0.29.2_3 is already installed and up-to-date.
To reinstall 0.29.2_3, run:
brew reinstall pkg-config
|
Build darwin-x64 / Build C++
libtool 2.4.7 is already installed and up-to-date.
To reinstall 2.4.7, run:
brew reinstall libtool
|
Build darwin-x64 / Build C++
cmake 3.29.3 is already installed and up-to-date.
To reinstall 3.29.3, run:
brew reinstall cmake
|
Build darwin-x64 / Build C++
[email protected] 1.1.1w is already installed, it's just not linked.
To link this version, run:
brew link [email protected]
|
Build darwin-x64 / Build C++
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK is set: not checking for outdated
dependents or dependents with broken linkage!
|
Build darwin-x64 / Link
Treating cmake as a formula. For the cask, use homebrew/cask/cmake or specify the `--cask` flag.
|
Build darwin-x64 / Link
pkg-config 0.29.2_3 is already installed and up-to-date.
To reinstall 0.29.2_3, run:
brew reinstall pkg-config
|
Build darwin-x64 / Link
libtool 2.4.7 is already installed and up-to-date.
To reinstall 2.4.7, run:
brew reinstall libtool
|
Build darwin-x64 / Link
cmake 3.29.3 is already installed and up-to-date.
To reinstall 3.29.3, run:
brew reinstall cmake
|
Build darwin-x64 / Link
[email protected] 1.1.1w is already installed, it's just not linked.
To link this version, run:
brew link [email protected]
|
Build darwin-x64 / Link
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK is set: not checking for outdated
dependents or dependents with broken linkage!
|
Build darwin-x64-baseline / Link
Treating cmake as a formula. For the cask, use homebrew/cask/cmake or specify the `--cask` flag.
|
Build darwin-x64-baseline / Link
pkg-config 0.29.2_3 is already installed and up-to-date.
To reinstall 0.29.2_3, run:
brew reinstall pkg-config
|
Build darwin-x64-baseline / Link
libtool 2.4.7 is already installed and up-to-date.
To reinstall 2.4.7, run:
brew reinstall libtool
|
Build darwin-x64-baseline / Link
cmake 3.29.3 is already installed and up-to-date.
To reinstall 3.29.3, run:
brew reinstall cmake
|
Build darwin-x64-baseline / Link
[email protected] 1.1.1w is already installed, it's just not linked.
To link this version, run:
brew link [email protected]
|
Build darwin-x64-baseline / Link
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK is set: not checking for outdated
dependents or dependents with broken linkage!
|
Build darwin-aarch64 / Link
[email protected] has been deprecated because it is not supported upstream!
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
bun-darwin-aarch64
Expired
|
17.3 MB |
|
bun-darwin-aarch64-profile
Expired
|
18.7 MB |
|
bun-darwin-aarch64-tests
Expired
|
22.1 KB |
|
bun-darwin-x64
Expired
|
18.8 MB |
|
bun-darwin-x64-baseline
Expired
|
18.8 MB |
|
bun-darwin-x64-baseline-profile
Expired
|
20.8 MB |
|
bun-darwin-x64-baseline-tests
Expired
|
23.1 KB |
|
bun-darwin-x64-profile
Expired
|
20.9 MB |
|
bun-darwin-x64-tests
Expired
|
30.9 KB |
|
bun-feature-data
Expired
|
474 Bytes |
|
bun-linux-aarch64
Expired
|
32.1 MB |
|
bun-linux-aarch64-profile
Expired
|
62.6 MB |
|
bun-linux-aarch64-tests
Expired
|
22.4 KB |
|
bun-linux-x64
Expired
|
33.4 MB |
|
bun-linux-x64-baseline
Expired
|
33.3 MB |
|
bun-linux-x64-baseline-profile
Expired
|
62.7 MB |
|
bun-linux-x64-baseline-tests
Expired
|
22.8 KB |
|
bun-linux-x64-profile
Expired
|
62.8 MB |
|
bun-linux-x64-tests
Expired
|
23.7 KB |
|
bun-windows-x64
Expired
|
33.7 MB |
|
bun-windows-x64-baseline
Expired
|
33.6 MB |
|
bun-windows-x64-baseline-profile
Expired
|
96.8 MB |
|
bun-windows-x64-baseline-tests
Expired
|
28.3 KB |
|
bun-windows-x64-profile
Expired
|
96.9 MB |
|
bun-windows-x64-tests
Expired
|
35.6 KB |
|