Skip to content

Commit feacfb3

Browse files
authored
chronos: Don't build projects with incomplete integrations. (#12961)
Follow up: Don't build projects which are known to be failing builds.
1 parent 8cbbd6f commit feacfb3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

infra/experimental/chronos/build_all.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ projs=$(echo $c_project_yaml | xargs dirname | xargs basename -a | sort)
2222
cd infra/experimental/chronos
2323

2424
for proj in $projs; do
25+
if [ ! -f ../../../projects/$proj/Dockerfile ]; then
26+
# Incomplete integration.
27+
echo "Skipping $proj as it's incomplete."
28+
continue
29+
fi
30+
2531
echo ./build_on_cloudbuild.sh $proj c
2632
./build_on_cloudbuild.sh $proj c
2733
done

0 commit comments

Comments
 (0)