Skip to content

Commit

Permalink
Use tmpfs of 4GB instead of 2GB
Browse files Browse the repository at this point in the history
  • Loading branch information
sandersn committed Jun 1, 2022
1 parent 4fb29d7 commit 00b16b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const executionTimeout = 10 * 60 * 1000;
export async function innerloop(params: GitParams | UserParams, downloadDir: string, userTestDir: string, repo: git.Repo, oldTscPath: string, newTscPath: string, outputs: string[]) {
const { testType } = params
if (params.tmpfs)
await execAsync(processCwd, "sudo mount -t tmpfs -o size=2g tmpfs " + downloadDir);
await execAsync(processCwd, "sudo mount -t tmpfs -o size=4g tmpfs " + downloadDir);

try {
if (repo.url) {
Expand Down

0 comments on commit 00b16b8

Please sign in to comment.