[infra] better all.sh

This commit is contained in:
Mike Aizatsky 2016-10-13 13:40:35 -07:00
parent 496ea1b901
commit 22fe54e844
1 changed files with 5 additions and 2 deletions

7
all.sh
View File

@ -20,6 +20,9 @@
./infra/base-images/all.sh
for project in boringssl expat freetype2 libchewing libpng libxml2 re2 sqlite3 zlib; do
IGNORE="docs:infra:tpm2:scripts"
for project in *; do
if [[ -f $project || ":${IGNORE}:" == *":$project:"* ]]; then continue; fi
docker build -t ossfuzz/$project $project/
done
done