[libcxx] r351638 - Fix all the bots.

Eric Fiselier eric at efcs.ca
Sat Jan 19 01:07:04 PST 2019


Author: ericwf
Date: Sat Jan 19 01:07:04 2019
New Revision: 351638

URL: http://llvm.org/viewvc/llvm-project?rev=351638&view=rev
Log:
Fix all the bots.

The buildbot start scripts hardcode the version string.
Bump it from 8 to 9.

Modified:
    libcxx/trunk/utils/docker/scripts/run_buildbot.sh

Modified: libcxx/trunk/utils/docker/scripts/run_buildbot.sh
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/docker/scripts/run_buildbot.sh?rev=351638&r1=351637&r2=351638&view=diff
==============================================================================
--- libcxx/trunk/utils/docker/scripts/run_buildbot.sh (original)
+++ libcxx/trunk/utils/docker/scripts/run_buildbot.sh Sat Jan 19 01:07:04 2019
@@ -15,9 +15,9 @@ apt-get upgrade -y
 # FIXME(EricWF): Remove this hack. It's only in place to temporarily fix linking libclang_rt from the
 # debian packages.
 # WARNING: If you're not a buildbot, DO NOT RUN!
-apt-get install lld-8
+apt-get install lld-9
 rm /usr/bin/ld
-ln -s /usr/bin/lld-8 /usr/bin/ld
+ln -s /usr/bin/lld-9 /usr/bin/ld
 
 systemctl set-property buildslave.service TasksMax=100000
 
@@ -59,4 +59,4 @@ grep "slave is ready" $BOT_DIR/twistd.lo
 # Gracefully restart before that happen.
 sleep 72000
 while pkill -SIGHUP buildslave; do sleep 5; done;
-shutdown now
\ No newline at end of file
+shutdown now




More information about the libcxx-commits mailing list