forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] properly get selenium manager from bazel output (SeleniumHQ#1…
…3452) * [build] properly get selenium manager from bazel output * Migrate to cross-platform msbuild targets --------- Co-authored-by: Nikolay Borisenko <[email protected]>
- Loading branch information
1 parent
401f3e3
commit 60cfe1f
Showing
7 changed files
with
66 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 2 additions & 6 deletions
8
dotnet/test/common/WebDriver.Common.Tests.csproj.prebuild.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
if not exist "%1..\..\..\bazel-bin\java\test\org\openqa\selenium\environment\appserver_deploy.jar" ( | ||
echo Building test web server | ||
pushd "%1..\..\.." | ||
bazel build //java/test/org/openqa/selenium/environment:appserver_deploy.jar | ||
popd | ||
) | ||
echo Building test web server | ||
bazel build //java/test/org/openqa/selenium/environment:appserver_deploy.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/bin/bash | ||
if [[ ! -f "%1..\..\..\bazel-bin\java\test\org\openqa\selenium\environment\appserver_deploy.jar" ]] | ||
then | ||
echo "Building test web server" | ||
bazel build //java/test/org/openqa/selenium/environment:appserver_deploy.jar | ||
fi | ||
echo "Building test web server" | ||
bazel build //java/test/org/openqa/selenium/environment:appserver_deploy.jar |