Commit a9983090ca38432c935e1050a53c1eb767ebd001

Authored by Jay Berkenbilt
1 parent 66ef118b

Run make in parallel when building releases

make_dist
@@ -119,6 +119,7 @@ if ($run_tests) @@ -119,6 +119,7 @@ if ($run_tests)
119 { 119 {
120 cd($srcdir); 120 cd($srcdir);
121 run("./configure"); 121 run("./configure");
  122 + run("make -j8");
122 run("make check"); 123 run("make check");
123 cd($pwd); 124 cd($pwd);
124 } 125 }
make_windows_releases
@@ -12,9 +12,11 @@ PATH=$cwd/libqpdf/build:$PATH @@ -12,9 +12,11 @@ PATH=$cwd/libqpdf/build:$PATH
12 rm -rf install-mingw* install-msvc* 12 rm -rf install-mingw* install-msvc*
13 13
14 ./config-mingw64 14 ./config-mingw64
  15 +make -j8
15 make check install 16 make check install
16 make distclean 17 make distclean
17 ./config-mingw32 18 ./config-mingw32
  19 +make -j8
18 make check install 20 make check install
19 make distclean 21 make distclean
20 22
make_windows_releases-msvc
@@ -17,5 +17,6 @@ cwd=`pwd` @@ -17,5 +17,6 @@ cwd=`pwd`
17 PATH=$cwd/libqpdf/build:$PATH 17 PATH=$cwd/libqpdf/build:$PATH
18 18
19 ./config-msvc $w 19 ./config-msvc $w
  20 +make -j8
20 make check install 21 make check install
21 make distclean 22 make distclean