# Copyright 2020 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. """Rules to create a release archive""" def release_archive(name, srcs = [], src_map = {}, package_dir = "-", deps = [], **kwargs): """ Creates an zip of the srcs, and renamed label artifacts. Usage: //:BUILD load("//src:release_archive.bzl", "release_archive") release_archive( name = "release_archive", src_map = { "BUILD.release.bazel.bazel": "BUILD.bazel", "WORKSPACE.release.bazel": "WORKSPACE", }, deps = [ "//dep:pkg" ], ) //dep:BUILD load("//src:release_archive.bzl", "release_archive") release_archive( name = "pkg", srcs = [ ":label_of_artifact", ], ) Args: name: target identifier, points to a pkg_tar target. package_dir: directory to place the srcs, src_map, and dist_files under. Defaults to the current directory. src_map: dict of