Skip to content

Commit b639793

Browse files
authored
Revert "Reapply "[sanitize] Don't build older then 1h requests" (#295)"
This reverts commit 6fb44c4.
1 parent a902e09 commit b639793

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

zorg/buildbot/builders/sanitizers/buildbot_functions.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,6 @@ function buildbot_update {
144144
git checkout -f "${BUILDBOT_REVISION}"
145145
git status
146146
git rev-list --pretty --max-count=1 HEAD
147-
# FIXME: Workaround for https://github.com/llvm/llvm-zorg/issues/250
148-
[[ "${SKIP_OLD:-1}" == "0" ]] || [[ ! -v BUILDBOT_SCHEDULER ]] || [[ "${BUILDBOT_SCHEDULER}" == "force-build-scheduler" ]] || (git log -1 --after='3 hours ago' | grep .) || {
149-
echo Revision is not recent enough
150-
exit 1
151-
}
152147
) || { build_exception ; exit 1 ; }
153148
LLVM=$ROOT/llvm-project/llvm
154149
fi
@@ -209,7 +204,7 @@ function build_clang_at_release_tag {
209204
then
210205
echo "@@@BUILD_STEP using pre-built stage1 clang at r${host_clang_revision}@@@"
211206
else
212-
SKIP_OLD=0 BUILDBOT_MONO_REPO_PATH= BUILDBOT_REVISION="${host_clang_revision}" buildbot_update
207+
BUILDBOT_MONO_REPO_PATH= BUILDBOT_REVISION="${host_clang_revision}" buildbot_update
213208

214209
rm -rf ${STAGE1_DIR}
215210
echo @@@BUILD_STEP build stage1 clang at $host_clang_revision@@@

0 commit comments

Comments
 (0)