Skip to content

Commit

Permalink
[RISCV][lit-on-qemu] Create bigger filesystem for lit-on-qemu
Browse files Browse the repository at this point in the history
In some cases 25GiB seems to not be enough. Let's just double it.
  • Loading branch information
asb committed Jan 22, 2025
1 parent 5eeccb4 commit ce2b398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/riscv-rise/lit-on-qemu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ for var in ["BB_IMG_DIR", "BB_QEMU_CPU", "BB_QEMU_SMP", "BB_QEMU_MEM"]:
# 2) The layout used by ClangBuilder.py in CI, with build directories as
# siblings to the monorepo checkout (named 'llvm').
print("@@@@@@@@@@ Creating ext4 filesystem with LLVM build directory @@@@@@@@")
subprocess.run(["fallocate", "-l", "25GiB", "llvm-project.img"], check=True)
subprocess.run(["fallocate", "-l", "50GiB", "llvm-project.img"], check=True)

current_path = pathlib.Path.cwd()
build_dir_name = current_path.name
Expand Down

0 comments on commit ce2b398

Please sign in to comment.