Skip to content

Commit 166266a

Browse files
committed
script: Make LXC container size suitable for gitian builds
This change prevents "No space left on device" error.
1 parent b847f49 commit 166266a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/gitian-build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def setup():
3939
if args.docker:
4040
make_image_prog += ['--docker']
4141
elif not args.kvm:
42-
make_image_prog += ['--lxc']
42+
make_image_prog += ['--lxc', '--disksize', '13000']
4343
subprocess.check_call(make_image_prog)
4444
os.chdir(workdir)
4545
if args.is_focal and not args.kvm and not args.docker:

0 commit comments

Comments
 (0)