blob: 97f0d04db3722f8cd0b91bf5ae02226e1d114bfd [file] [log] [blame]
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
# This BUILD file is used for installing clang.tar.gz into /usr/local
# of debian8-clang-fully-loaded container. The clang.tar.gz file was
# downloaded by gsutil_cp rule in the WORKSPACE file, and contains
# the same compiled clang binary as in
# https://console.cloud.google.com/launcher/details/google/clang-debian8
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
# py.tar.gz contains python3.6, and was generated from
# container/debian8-clang-fully-loaded/Dockerfile.py.build
# This target is broken if executed directly and needs to run from
# container/debian8-clang-fully-loaded/cloud.yaml as it creates the py.tar.gz file
# TODO(yiyu): better way for fetching python3.6 release from docker image
pkg_tar(
name = "tar",
srcs = glob(["**/*"]),
package_dir = "/",
strip_prefix = ".",
tags = ["manual"],
deps = [":py.tar.gz"],
)