Skip to content

Commit

Permalink
also separate out python3-info
Browse files Browse the repository at this point in the history
  • Loading branch information
milkypostman committed Dec 29, 2015
1 parent 4799174 commit 0679e89
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/parallel_build_all
Expand Up @@ -18,13 +18,14 @@ function build_all {
# grep --files-with-match wiki recipes/* | xargs make -j1 &
make SLEEP=2 -j1 $(grep --files-with-match wiki recipes/*) &
# grep --files-without-match wiki recipes/* | xargs make -j4 &
make -j4 $(grep --files-without-match wiki $(find recipes/ -type f -not -name python-info | sort)) &
make -j4 $(grep --files-without-match wiki $(find recipes/ -type f -not -name python-info -and -not -name python3-info | sort)) &
wait

# python-info is too big to run while other are running. Running
# this separately will speed up other builds and make this package
# actually build.
# python-info and python3-info are too big to run while other are
# running. Running these separately should speed up other builds and
# make this package actually build.
make recipes/python-info
make recipes/python3-info

echo '{"completed":' `unix_timestamp` '}' > html/build-status.json
}
Expand Down

0 comments on commit 0679e89

Please sign in to comment.