mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 18:38:30 +08:00

I have no idea if this is still needed, but removing the workaround seems like the easiest way to test. I'll revert this change if the bots go red. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@373650 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
465 B
Bash
Executable File
26 lines
465 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
cd /libcxx
|
|
git pull
|
|
|
|
|
|
#pushd /tmp
|
|
#curl -sSO https://dl.google.com/cloudagents/install-monitoring-agent.sh
|
|
#bash install-monitoring-agent.sh
|
|
#curl -sSO https://dl.google.com/cloudagents/install-logging-agent.sh
|
|
#bash install-logging-agent.sh --structured
|
|
#popd
|
|
|
|
|
|
apt-get update -y
|
|
apt-get upgrade -y
|
|
|
|
apt-get install sudo -y
|
|
|
|
systemctl set-property buildslave.service TasksMax=100000
|
|
|
|
systemctl daemon-reload
|
|
service buildslave restart
|