Skip to content

build: disable runfile creation in bazel_build job #16824

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ jobs:
- *yarn_install
- *setup_bazel_binary

- run: bazel build src/... --build_tag_filters=-docs-package
# Build all targets in the project (not only tests). Disable runfile tree creation
# as these are only needed for execution of targets and this job just verifies that
# targets can be built.
- run: bazel build src/... --build_tag_filters=-docs-package --nobuild_runfile_links

# --------------------------------------------------------------------------------------------
# Job that runs ts-api-guardian against our API goldens in "tools/public_api_guard".
Expand Down