shun
shun
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
How can I access the encrypted build variables inside the shell?
Yes.
5 replies
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
How can I access the encrypted build variables inside the shell?
@Walshy | Out of office Thanks for the reply. Here is the build ID. 49a5582d-8776-424b-8185-8b62d83bbb44 However, I have created wrangler.toml from template and am running shell. When I try to access the encrypted variables from inside that shell, it comes up empty.
5 replies
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
Workers build unstable?
@Maximo Hi. The build has stopped with the following error.
21:51:10.538 Initializing build environment...
21:51:20.256 Success: Finished initializing build environment
21:51:20.259 Cloning repository...
21:51:21.370 Detected the following tools from environment: [email protected], [email protected]
21:51:21.371 Installing project dependencies: bun install --frozen-lockfile
21:51:21.671 bun install v1.1.28 (cf4e9cb6)
22:11:09.371 Build was timed out
21:51:10.538 Initializing build environment...
21:51:20.256 Success: Finished initializing build environment
21:51:20.259 Cloning repository...
21:51:21.370 Detected the following tools from environment: [email protected], [email protected]
21:51:21.371 Installing project dependencies: bun install --frozen-lockfile
21:51:21.671 bun install v1.1.28 (cf4e9cb6)
22:11:09.371 Build was timed out
deploy code is 2ff2529f-a1fe-47ef-a10c-57942d6d976c
9 replies
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
Workers build unstable?
@Maximo Thank you very much! Best regards!
9 replies
CDCloudflare Developers
Created by Stockton on 4/5/2024 in #workers-help
✘ [ERROR] Failed to register worker in local service registry TypeError: fetch failed
Me too. using wrangler 3.80.4 and Hono.
5 replies
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
Workers build unstable?
@Maximo Thank you for response!!
9 replies
CDCloudflare Developers
Created by shun on 10/15/2024 in #workers-help
Workers build unstable?
@Maximo Thank you for your response! build-uuid is 54a0a649-d34d-48f9-ad64-509ac899a712 . By the way, I tried to rebuild using failed build job, and success. If the uuid is not changed by rebuild, it will be the above.
9 replies
CDCloudflare Developers
Created by shun on 10/8/2024 in #workers-help
[Workers Build] bun: not found error
I confirmed that it was cured! Thank you!
8 replies
CDCloudflare Developers
Created by shun on 10/8/2024 in #workers-help
[Workers Build] bun: not found error
@Maximo @Walshy | Deploying Thank you for your prompt response! Once I had solved the problem with the following steps. Please refer to it! 1. fix BUN_VERSION in the build variable to 1.1.0 2. execute the following shell in the build command
#! /bin/bash
# ! !work around!
curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun”
export PATH="$BUN_INSTALL/bin:$PATH”
bun --version

bun install
#! /bin/bash
# ! !work around!
curl -fsSL https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun”
export PATH="$BUN_INSTALL/bin:$PATH”
bun --version

bun install
3. push to the linked branch on github and execute build
8 replies
CDCloudflare Developers
Created by shun on 10/8/2024 in #workers-help
[Workers Build] bun: not found error
I removed bun.lockb and now npm install runs. So I am wondering if simply bun is being removed from the build server.
8 replies
CDCloudflare Developers
Created by shun on 10/8/2024 in #workers-help
[Workers Build] bun: not found error
Cloudflare Workers is deployed using the build function. The project uses Bun, and the build process runs bun install --frozen-lockfile, although I have not specifically configured the build. I am getting the following error here, which prevents me from deploying. Deployment was successful until 21 hours ago, but now it is failing. Please help. Below is the build log. 11:01:03.697 Initializing build environment... 11:01:14.054 Success: Finished initializing build environment 11:01:14.058 Cloning repository... 11:01:15.213 Detected the following tools from environment: [email protected], [email protected], [email protected] 11:01:15.214 Installing project dependencies: bun install --frozen-lockfile 11:01:15.220 /bin/sh: 1: bun: not found 11:01:15.221 Failed: error occurred while installing tools or dependencies
8 replies