projects
/
arvados-dev.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
8008: Move test files into their own directories. Fix rails package tests to
[arvados-dev.git]
/
jenkins
/
package-build-dockerfiles
/
build-all-build-containers.sh
1
#!/bin/bash
2
3
make
4
5
for target in `find -maxdepth 1 -type d |grep -v generated`; do
6
if [[ "$target" == "." ]]; then
7
continue
8
fi
9
target=${target#./}
10
echo $target
11
cd $target
12
docker build -t arvados/build:$target .
13
cd ..
14
done
15
16