1
0
Fork 0
llvm-premerge-checks/containers/buildkite-premerge-debian/entrypoint.sh

32 lines
1 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# Copyright 2021 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.
set -euo pipefail
USER=buildkite-agent
2020-05-14 12:57:38 +02:00
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 ~/.ssh
chmod 700 ~/.ssh
cp /mnt/ssh/* ~/.ssh
chmod 600 ~/.ssh/*
exec /usr/bin/tini -g -- $@