Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .buildchain/kfd-1/libnode-contract-world.witness.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
{
"name": "buildchain-config",
"sourcePath": "buildchain.toml",
"sourceSha256": "fbc596052c556a59812070ad5d5be093e51ba995cffa6e7b809eb60bbc8f54ae",
"sourceSha256": "66782a978e1914d076d81998a3678365ed7eedad407826ad0f7d8c2e69ad6c42",
"artifactPath": "buildchain.toml",
"expectedSha256": "fbc596052c556a59812070ad5d5be093e51ba995cffa6e7b809eb60bbc8f54ae",
"expectedSha256": "66782a978e1914d076d81998a3678365ed7eedad407826ad0f7d8c2e69ad6c42",
"byteForByte": true
},
{
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
checkout-cache-mirror-url-template: ${{ vars.BUILDCHAIN_CHECKOUT_CACHE_MIRROR_URL_TEMPLATE }}
checkout-cache-fallback: github
checkout-cache-timeout-seconds: 60
lifecycle-timeout-minutes: 240
setup-node: true
node-version: '24'
install-command: node .gyp/buildchain-install.js "${{ vars.KF_NODE_GIT_URL }}" "${{ vars.KF_NODE_REFERENCE }}"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
checkout-cache-mirror-url-template: ${{ vars.BUILDCHAIN_CHECKOUT_CACHE_MIRROR_URL_TEMPLATE }}
checkout-cache-fallback: github
checkout-cache-timeout-seconds: 60
lifecycle-timeout-minutes: 240
setup-node: true
node-version: '24'
install-command: node .gyp/buildchain-install.js "${{ vars.KF_NODE_GIT_URL }}" "${{ vars.KF_NODE_REFERENCE }}"
Expand Down
5 changes: 4 additions & 1 deletion buildchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ cache_dirs = [
]

[lifecycle.install]
timeout_minutes = 10
# Preparing the pinned Node.js source can transfer more than 1 GiB on a cold
# macOS x64 runner. Keep this stage bounded while allowing slow GitHub fetches
# to finish before the native build begins.
timeout_minutes = 45
commands = [
"corepack pnpm install --frozen-lockfile --ignore-scripts",
"corepack pnpm prepare-node-source",
Expand Down
Loading