Skip to content

Commit

Permalink
Fix files for release. (#380)
Browse files Browse the repository at this point in the history
Minor updates to the CI configs.
  • Loading branch information
DrMarcII authored Aug 24, 2019
1 parent 707d9d3 commit c964844
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platforms:
build_targets:
- "//..."
test_flags:
- "--test_tag_filters=-noci,-external,-native,-chrome-win10-connect"
- "--test_tag_filters=-noci,-external,-native"
- "--test_output=streamed"
test_targets:
- "//..."
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_install:
script:
- |
FILTERS="-noci,-native"
FILTERS="-noci,-notravis,-native"
if [[ "${TRAVIS_PULL_REQUEST}" != "false" ]]; then
FILTERS="${FILTERS},-sauce"
fi
Expand Down
2 changes: 1 addition & 1 deletion build_files/metadata.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ licenses(["notice"]) # Apache 2.0
alias(
name = "main",
actual = select({
"//common/conditions:linux": "linux_amd64_stripped/main",
"//common/conditions:linux": "linux_amd64_pure_stripped/main",
"//common/conditions:mac": "darwin_amd64_pure_stripped/main",
"//common/conditions:windows": "windows_amd64_pure_stripped/main.exe",
}),
Expand Down
2 changes: 1 addition & 1 deletion build_files/wsl.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ web_test_named_executable(
name = "wsl",
alt_name = "WEBDRIVER_SERVER_LIGHT",
executable = select({
"//common/conditions:linux": "main/linux_amd64_stripped/main",
"//common/conditions:linux": "main/linux_amd64_pure_stripped/main",
"//common/conditions:mac": "main/darwin_amd64_pure_stripped/main",
"//common/conditions:windows": "main/windows_amd64_pure_stripped/main.exe",
}),
Expand Down
2 changes: 1 addition & 1 deletion build_files/wtl.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ licenses(["notice"]) # Apache 2.0
alias(
name = "main",
actual = select({
"//common/conditions:linux": "linux_amd64_stripped/main",
"//common/conditions:linux": "linux_amd64_pure_stripped/main",
"//common/conditions:mac": "darwin_amd64_pure_stripped/main",
"//common/conditions:windows": "windows_amd64_pure_stripped/main.exe",
}),
Expand Down
18 changes: 18 additions & 0 deletions testing/web/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,23 @@ py_web_test_suite(
"//browsers/sauce:chrome-win10",
"//browsers/sauce:chrome-win10-connect",
],
tags = {
"chromium-local": [
"native",
],
"chrome-win10": [
"exclusive",
"sauce",
"notravis",
],
"chrome-win10-connect": [
"exclusive",
"noci",
"sauce",
],
"firefox-local": [
"native",
],
},
deps = [":web"],
)
6 changes: 3 additions & 3 deletions tools/copy.bara.sky
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ core.workflow(
"common/**",
"go/bazel/**",
"go/cmdhelper/**",
"go/httphelper/**",
"go/metadata/**",
"go/portpicker/**",
"go/screenshotter/**",
"go/webtest/**",
"java/**",
"javatests/**",
Expand All @@ -54,8 +54,8 @@ core.workflow(
),
transformations = [
core.move("bazel-bin/go/metadata/main", "go/metadata/main"),
core.move("bazel-bin/go/wsl", "go/wsl"),
core.move("bazel-bin/go/wtl", "go/wtl"),
core.move("bazel-bin/go/wsl/main", "go/wsl/main"),
core.move("bazel-bin/go/wtl/main", "go/wtl/main"),
core.move("build_files/metadata.BUILD", "go/metadata/main/BUILD.bazel"),
core.move("build_files/wsl.BUILD", "go/wsl/BUILD.bazel"),
core.move("build_files/wtl.BUILD", "go/wtl/main/BUILD.bazel"),
Expand Down

0 comments on commit c964844

Please sign in to comment.