Skip to content

Commit

Permalink
Finally fixed update-build-files
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshjoshi committed Jun 10, 2024
1 parent 1f83303 commit dcd6123
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Check BUILD files
run: |
pants update-build-files --check
pants update-build-files --check ::
- name: Lint and (TODO) typecheck
run: |
Expand Down
4 changes: 2 additions & 2 deletions examples/cc/hellocpp/BUILD.pants
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cc_sources(
name="libhellocpp",
sources=["**/*.cpp", "**/*.h"],
name="libhellocpp",
sources=["**/*.cpp", "**/*.h"],
)
6 changes: 3 additions & 3 deletions examples/python/hellofastapi/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ pex_binary(
scie_binary(
name="hellofastapi-scie",
dependencies=[":hellofastapi-pex"],
#platforms=["linux-x86_64", "macos-aarch64"]
lift="hellofastapi.toml"
)
# platforms=["linux-x86_64", "macos-aarch64"]
lift="hellofastapi.toml",
)
4 changes: 2 additions & 2 deletions examples/python/hellofib/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ pex_binary(
scie_binary(
name="hellofib-scie",
dependencies=[":hellofib-pex"],
platforms=["linux-x86_64", "macos-aarch64"]
)
platforms=["linux-x86_64", "macos-aarch64"],
)
4 changes: 2 additions & 2 deletions examples/python/hellokivy/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ pex_binary(
scie_binary(
name="hellokivy-scie",
dependencies=[":hellokivy-pex"],
platforms=["linux-x86_64", "macos-aarch64"]
)
platforms=["linux-x86_64", "macos-aarch64"],
)
4 changes: 2 additions & 2 deletions examples/python/hellonumpy/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ pex_binary(
scie_binary(
name="hellonumpy-scie",
dependencies=[":hellonumpy-pex"],
platforms=["linux-x86_64", "macos-aarch64"]
)
platforms=["linux-x86_64", "macos-aarch64"],
)
4 changes: 2 additions & 2 deletions examples/python/hellotyper/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ pex_binary(
scie_binary(
name="hellotyper-scie",
dependencies=[":hellotyper-pex"],
platforms=["linux-x86_64", "macos-aarch64"]
)
platforms=["linux-x86_64", "macos-aarch64"],
)
4 changes: 2 additions & 2 deletions examples/python/hellowebview/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ pex_binary(
scie_binary(
name="hellowebview-scie",
dependencies=[":hellowebview-pex"],
platforms=["linux-x86_64", "macos-aarch64"]
)
platforms=["linux-x86_64", "macos-aarch64"],
)
4 changes: 2 additions & 2 deletions examples/python/helloworld/BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ pex_binary(
scie_binary(
name="helloworld-scie",
dependencies=[":helloworld-pex"],
#platforms=["linux-x86_64", "macos-aarch64"]
lift="lift.toml"
# platforms=["linux-x86_64", "macos-aarch64"]
lift="lift.toml",
)
2 changes: 1 addition & 1 deletion pants-plugins/experimental/scie/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python_sources()
python_distribution(
name="scie-dist",
dependencies=[":scie"],
repositories=["@pypi"], # Configuration in ~/.pypirc
repositories=["@pypi"], # Configuration in ~/.pypirc
wheel=True,
sdist=False,
provides=python_artifact(
Expand Down

0 comments on commit dcd6123

Please sign in to comment.