Skip to content

Commit

Permalink
[rust] Build on Windows too
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Aug 18, 2023
1 parent 4eeed64 commit d56381c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common/manager/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ alias(
}),
)

# TODO: When Rust compiles nicely on Windows, use the same stamping
# logic as the other rules
alias(
name = "selenium-manager-windows",
actual = "windows/selenium-manager.exe",
actual = select({
"//common:stamp": "windows/selenium-manager.exe",
"//conditions:default": "//rust:selenium-manager-windows",
}),
)

exports_files(
Expand Down

0 comments on commit d56381c

Please sign in to comment.