Skip to content
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

Create pantsbuild BUILD files with ./pants tailor :: #5738

Merged
merged 6 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
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
35 changes: 17 additions & 18 deletions .github/workflows/pants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@
name: Validate Pants Metadata

on:
# temporarily only allow manual runs until we have BUILD files and lockfiles
workflow_dispatch:
#push:
# branches:
# # only on merges to master branch
# - master
# # and version branches, which only include minor versions (eg: v3.4)
# - v[0-9]+.[0-9]+
# tags:
# # also version tags, which include bugfix releases (eg: v3.4.0)
# - v[0-9]+.[0-9]+.[0-9]+
#pull_request:
# type: [opened, reopened, edited]
# branches:
# # Only for PRs targeting those branches
# - master
# - v[0-9]+.[0-9]+
push:
branches:
# only on merges to master branch
- master
# and version branches, which only include minor versions (eg: v3.4)
- v[0-9]+.[0-9]+
tags:
# also version tags, which include bugfix releases (eg: v3.4.0)
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
type: [opened, reopened, edited]
branches:
# Only for PRs targeting those branches
- master
- v[0-9]+.[0-9]+

jobs:
pants-tailor:
Expand All @@ -42,11 +40,12 @@ jobs:
# Otherwise, we may need an additional workflow or job to delete old caches
# if they are not expiring fast enough, and we hit the GHA 10GB per repo max.
with:
base-branch: master
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The action defaults to using main as the base-branch (which I forgot, oops).

# To ignore a bad cache, bump the cache* integer.
gha-cache-key: cache0-BUILD
# This hash should include all of our lockfiles so that the pip/pex caches
# get invalidated on any transitive dependency update.
named-caches-hash: ${{ hashFiles('requirements.txt' }}
named-caches-hash: ${{ hashFiles('requirements.txt') }}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doh! Typo!

# enable the optional lmdb_store cache since we're not using remote caching.
cache-lmdb-store: 'true'

Expand Down
7 changes: 7 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
python_requirements(
name="root",
)

python_test_utils(
name="test_utils0",
)
Comment on lines +5 to +7
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is for conftest.py. I will rename the targets in this BUILD file (and others) in a follow-up PR.

2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Added

* Begin introducing `pants <https://www.pantsbuild.org/docs>`_ to improve DX (Developer Experience)
working on StackStorm, improve our security posture, and improve CI reliability thanks in part
to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 #5726 #5725 #5732 #5733 #5737
to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 #5726 #5725 #5732 #5733 #5737 #5738
Contributed by @cognifloyd

Changed
Expand Down
1 change: 1 addition & 0 deletions contrib/chatops/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/chatops/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_tests()
6 changes: 6 additions & 0 deletions contrib/core/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
python_sources()

python_requirements(
name="reqs",
source="requirements-tests.txt",
)
1 change: 1 addition & 0 deletions contrib/core/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/core/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_tests()
1 change: 1 addition & 0 deletions contrib/debug/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
5 changes: 5 additions & 0 deletions contrib/examples/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

shell_sources(
name="actions0",
)
1 change: 1 addition & 0 deletions contrib/examples/actions/bash_exit_code/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions contrib/examples/actions/bash_ping/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions contrib/examples/actions/bash_random/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions contrib/examples/actions/pythonactions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/examples/actions/ubuntu_pkg_info/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/examples/actions/ubuntu_pkg_info/lib/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/examples/lib/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/examples/sensors/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/examples/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_tests()
1 change: 1 addition & 0 deletions contrib/hello_st2/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions contrib/hello_st2/sensors/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/linux/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_requirements(
name="reqs",
)
5 changes: 5 additions & 0 deletions contrib/linux/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

shell_sources(
name="actions0",
)
1 change: 1 addition & 0 deletions contrib/linux/actions/checks/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/linux/sensors/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/linux/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_tests()
1 change: 1 addition & 0 deletions contrib/packs/actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/packs/actions/pack_mgmt/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/packs/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_tests()
1 change: 1 addition & 0 deletions contrib/packs/tests/fixtures/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/action_chain_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/announcement_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/http_runner/http_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/http_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/inquirer_runner/inquirer_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/inquirer_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/local_runner/local_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/local_runner/tests/integration/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/noop_runner/noop_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/noop_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/orquesta_runner/orquesta_functions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/runners/orquesta_runner/orquesta_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/orquesta_runner/tests/integration/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
5 changes: 5 additions & 0 deletions contrib/runners/orquesta_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_tests(
name="tests",
)

python_sources()
1 change: 1 addition & 0 deletions contrib/runners/python_runner/python_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/python_runner/tests/integration/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions contrib/runners/python_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/remote_runner/remote_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions contrib/runners/winrm_runner/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions contrib/runners/winrm_runner/tests/unit/fixtures/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions contrib/runners/winrm_runner/winrm_runner/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
5 changes: 5 additions & 0 deletions pylint_plugins/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

python_tests(
name="tests",
)
5 changes: 5 additions & 0 deletions scripts/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

shell_sources(
name="scripts0",
)
1 change: 1 addition & 0 deletions scripts/ci/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions scripts/github/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions st2actions/bin/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/cmd/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/container/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/notifier/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/policies/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/runners/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/scheduler/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2actions/st2actions/workflows/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions st2actions/tests/integration/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2actions/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2actions/tests/unit/policies/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions st2api/st2api/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2api/st2api/cmd/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2api/st2api/controllers/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2api/st2api/controllers/v1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions st2api/tests/integration/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2api/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2api/tests/unit/controllers/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2api/tests/unit/controllers/v1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
2 changes: 1 addition & 1 deletion st2api/tests/unit/controllers/v1/test_packs_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def test_get_pack_files_and_pack_file_ref_doesnt_equal_pack_name(self):
# Ref is not equal to the name, controller should still work
resp = self.app.get("/v1/packs/views/files/dummy_pack_16")
self.assertEqual(resp.status_int, http_client.OK)
self.assertEqual(len(resp.json), 3)
self.assertEqual(len(resp.json), 4)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to bump the file count in the pack because this PR added a BUILD file in the pack.

self.assertIn("pack.yaml", [f["file_path"] for f in resp.json])

resp = self.app.get("/v1/packs/views/file/dummy_pack_16/pack.yaml")
Expand Down
1 change: 1 addition & 0 deletions st2auth/st2auth/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2auth/st2auth/backends/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2auth/st2auth/cmd/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2auth/st2auth/controllers/v1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2auth/st2auth/sso/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2auth/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions st2auth/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
3 changes: 3 additions & 0 deletions st2auth/tests/unit/controllers/v1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions st2client/conf/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell_sources()
1 change: 1 addition & 0 deletions st2client/st2client/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/st2client/commands/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/st2client/exceptions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/st2client/formatters/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/st2client/models/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/st2client/utils/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/tests/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2client/tests/fixtures/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
3 changes: 3 additions & 0 deletions st2client/tests/unit/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python_tests(
name="tests",
)
5 changes: 5 additions & 0 deletions st2common/benchmarks/micro/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

python_tests(
name="tests",
)
1 change: 1 addition & 0 deletions st2common/bin/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/bin/migrations/v1.5/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
5 changes: 5 additions & 0 deletions st2common/bin/migrations/v2.1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python_sources()

shell_sources(
name="v2.10",
)
1 change: 1 addition & 0 deletions st2common/bin/migrations/v3.1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/bin/migrations/v3.5/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/bootstrap/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/callback/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/cmd/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/constants/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/content/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/exceptions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/expressions/functions/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/garbage_collection/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/logging/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/metrics/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/metrics/drivers/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/middleware/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/models/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/models/api/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/models/db/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/models/system/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/models/utils/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/persistence/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/policies/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/rbac/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/rbac/backends/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/runners/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/services/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
1 change: 1 addition & 0 deletions st2common/st2common/stream/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_sources()
Loading