Skip to content

Commit b95d65e

Browse files
David Heyermeta-codesync[bot]
authored andcommitted
Stop marking backing fbpkg.builder as windows only
Summary: The fbpkg.builder baking target should not be marked as only compatible with windows since we really want the ci for those targets to run. I also had to modify some usecases where deps were not compatible with linux. Differential Revision: D88442665 fbshipit-source-id: 152835fe2c3e0d2e1339f584f4eb38c48fd182c8
1 parent 464c703 commit b95d65e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

watchman/BUCK

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,19 +1005,19 @@ nupkg.builder(
10051005
],
10061006
chocolatey_install_script = "facebook/windows/chocolateyinstall.ps1",
10071007
chocolatey_uninstall_script = "facebook/windows/chocolateyuninstall.ps1",
1008-
compatible_with = [
1009-
"ovr_config//os:windows",
1010-
],
10111008
oncall = "scm_client_infra",
10121009
version = dot_version,
1013-
deps = [
1014-
"fbcode//watchman:watchman",
1015-
"fbcode//watchman:watchman[pdb]",
1016-
"fbcode//watchman/cli:cli",
1017-
"fbcode//watchman/python/bin:watchman-diag",
1018-
"fbcode//watchman/python/bin:watchman-make",
1019-
"fbcode//watchman/python/bin:watchman-replicate-subscription",
1020-
"fbcode//watchman/python/bin:watchman-wait",
1021-
"fbsource//third-party/rust:deelevate-eledo-pty-bridge",
1022-
],
1010+
deps = select({
1011+
"DEFAULT": [],
1012+
"ovr_config//os:windows": [
1013+
"fbcode//watchman:watchman",
1014+
"fbcode//watchman:watchman[pdb]",
1015+
"fbcode//watchman/cli:cli",
1016+
"fbcode//watchman/python/bin:watchman-diag",
1017+
"fbcode//watchman/python/bin:watchman-make",
1018+
"fbcode//watchman/python/bin:watchman-replicate-subscription",
1019+
"fbcode//watchman/python/bin:watchman-wait",
1020+
"fbsource//third-party/rust:deelevate-eledo-pty-bridge",
1021+
],
1022+
}),
10231023
)

0 commit comments

Comments
 (0)