Skip to content

Commit

Permalink
Merge pull request #1273 from h-sug1no/vrtest-puppeteer-backend-3
Browse files Browse the repository at this point in the history
reduce jsdom_jobs on platform with many cpus.
  • Loading branch information
0xfe authored Dec 29, 2021
2 parents d4550a1 + 4e22d6d commit c00655f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_images.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const appMain = async () => {
getArgs: () => {
return [`../${ver}`, imageDir].concat(args);
},
jobs: numTestes ? parallel : 1,
jobs: numTestes ? Math.min(pptrJobs, parallel) : 1,
},
pptr: {
path: './tools/generate_images_pptr.js',
Expand Down

0 comments on commit c00655f

Please sign in to comment.