46c9fefb77
https://ccache.dev/manual/3.7.11.html#_configuration uses CCACHE_DIR to set cache directory. CCACHE_PATH has a different meaning. + removed LLVM_CCACHE_DIR ccache argument to use CCACHE_DIR from env. + print additional info about ccache config and machine readable stats.
37 lines
No EOL
1.3 KiB
Bash
Executable file
37 lines
No EOL
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://llvm.org/LICENSE.txt
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Buildkite installation creates 'buildkite-agent' user.
|
|
USER=buildkite-agent
|
|
|
|
# prepare work directory
|
|
mkdir -p "${BUILDKITE_BUILD_PATH}"
|
|
chown -R ${USER}:${USER} "${BUILDKITE_BUILD_PATH}"
|
|
|
|
export CCACHE_DIR="${BUILDKITE_BUILD_PATH}"/ccache
|
|
export CCACHE_MAXSIZE=20G
|
|
mkdir -p "${CCACHE_DIR}"
|
|
chown -R ${USER}:${USER} "${CCACHE_DIR}"
|
|
|
|
# /mnt/ssh should contain known_hosts, id_rsa and id_rsa.pub .
|
|
mkdir -p /var/lib/buildkite-agent/.ssh
|
|
cp /mnt/ssh/* /var/lib/buildkite-agent/.ssh
|
|
chmod 700 /var/lib/buildkite-agent/.ssh
|
|
chmod 600 /var/lib/buildkite-agent/.ssh/*
|
|
chown -R $USER:$USER /var/lib/buildkite-agent/.ssh
|
|
|
|
su buildkite-agent -c "buildkite-agent start"
|
|
echo "agent exited"
|
|
sleep 10m |