Skip to content

Commit 9f5ef28

Browse files
feat(enclave): increase SCONE heap size from 1G to 3G
1 parent ab5fa3d commit 9f5ef28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dapp-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
/etc/resolv.conf
7878
binary-fs: true
7979
fs-dir: /app
80-
heap: 1G
80+
heap: 3G
8181
dlopen: 1
8282
mprotect: 1
8383
secrets:

deployment-dapp/src/singleFunction/deployApp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const deployApp = async ({
3232
framework: 'SCONE' as any, // workaround framework not auto capitalized
3333
version: `v${sconifyVersion.split('.').slice(0, 2).join('.')}`, // extracts "vX.Y" from "X.Y.Z-vN" format (e.g., "5.9.1-v16" → "v5.9")
3434
entrypoint: 'node /app/app.js',
35-
heapSize: 1073741824,
35+
heapSize: 3221225472,
3636
fingerprint,
3737
};
3838
const app = {

0 commit comments

Comments
 (0)