Skip to content

Commit 9f792e1

Browse files
committed
Temporarily disable dist-ing RLS, Rustfmt and Clippy.
Unfortunately we don't have sufficient time to rebuild the cache *and* distribute everything in `dist-x86_64-linux alt`, the debug assertions are really slow. We will re-enable them after the PR has been successfully merged, thus successfully updating the cache (freeing up 40 minutes), giving us enough time to build these tools.
1 parent 56a19a9 commit 9f792e1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/ci/run.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,15 @@ fi
105105
travis_fold end log-system-info
106106

107107
if [ ! -z "$SCRIPT" ]; then
108-
sh -x -c "$SCRIPT"
108+
# FIXME(#49246): Re-enable these tools after #49246 has been merged and thus fixing the cache.
109+
if [ "$DEPLOY_ALT" = 1 ]; then
110+
sh -x -c "$SCRIPT \
111+
--exclude src/tools/rls \
112+
--exclude src/tools/rustfmt \
113+
--exclude src/tools/clippy"
114+
else
115+
sh -x -c "$SCRIPT"
116+
fi
109117
else
110118
do_make() {
111119
travis_fold start "make-$1"

0 commit comments

Comments
 (0)