mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-12-03 11:52:43 +00:00
4ad02b7795
* refactor(release): switch release integrity to be dynamic This matches rules_py as documented by https://blog.aspect.build/releasing-bazel-rulesets-rust It has the benefit that developers no longer get yelled at to vendor some updated integrity hashes into bazel-lib every time they touch the Go sources. * refactor: echo should produce trailing newline * chore: bump action-gh-release to avoid Node 16 warning * chore: update test that is sensitive to compilation mode We now only use --compilation_mode=opt when cutting a release
32 lines
989 B
Bash
Executable file
32 lines
989 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copies release files from bazel-out to a common folder so the GitHub Actions
|
|
# configuration can easily find them all
|
|
|
|
# --- begin runfiles.bash initialization v3 ---
|
|
# Copy-pasted from the Bazel Bash runfiles library v3.
|
|
set -uo pipefail
|
|
set +e
|
|
f=bazel_tools/tools/bash/runfiles/runfiles.bash
|
|
source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null ||
|
|
source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null ||
|
|
source "$0.runfiles/$f" 2>/dev/null ||
|
|
source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null ||
|
|
source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null ||
|
|
{
|
|
echo >&2 "ERROR: cannot find $f"
|
|
exit 1
|
|
}
|
|
f=
|
|
set -e
|
|
# --- end runfiles.bash initialization v3 ---
|
|
|
|
if [[ -z "${DEST:-}" ]]; then
|
|
echo >&2 "ERROR: specify DEST environment variable"
|
|
exit 1
|
|
fi
|
|
|
|
cd $BUILD_WORKSPACE_DIRECTORY
|
|
for arg in "$@"; do
|
|
cp -pv "$(rlocation $arg)" $DEST
|
|
done
|