Skip to content

Commit

Permalink
Temporarily disable dist-ing RLS, Rustfmt and Clippy.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kennytm committed Mar 22, 2018
1 parent 56a19a9 commit 9f792e1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,15 @@ fi
travis_fold end log-system-info

if [ ! -z "$SCRIPT" ]; then
sh -x -c "$SCRIPT"
# FIXME(#49246): Re-enable these tools after #49246 has been merged and thus fixing the cache.
if [ "$DEPLOY_ALT" = 1 ]; then
sh -x -c "$SCRIPT \
--exclude src/tools/rls \
--exclude src/tools/rustfmt \
--exclude src/tools/clippy"
else
sh -x -c "$SCRIPT"
fi
else
do_make() {
travis_fold start "make-$1"
Expand Down

0 comments on commit 9f792e1

Please sign in to comment.