mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 08:19:33 -04:00
* chore(NA): move bazel workspace status into nodejs executable * chore(NA): removed unused console.log on error * chore(NA): ability to setup different name for origin remote on workspace status command * chore(NA): do not fail if cant collect repo url Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
18 lines
703 B
Text
18 lines
703 B
Text
# Inspired by https://raw.githubusercontent.com/bazelbuild/rules_nodejs/master/.bazelrc
|
|
# Import shared settings first so we can override below
|
|
import %workspace%/.bazelrc.common
|
|
|
|
## Disabled for now
|
|
# Remote cache settings for local env
|
|
# build --remote_cache=https://storage.googleapis.com/kibana-bazel-cache
|
|
# build --incompatible_remote_results_ignore_disk=true
|
|
# build --remote_accept_cached=true
|
|
# build --remote_upload_local_results=false
|
|
|
|
# BuildBuddy
|
|
## Metadata settings
|
|
build --workspace_status_command="node ./src/dev/bazel_workspace_status.js"
|
|
# Enable this in case you want to share your build info
|
|
# build --build_metadata=VISIBILITY=PUBLIC
|
|
build --build_metadata=TEST_GROUPS=//packages
|
|
|