-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing CI failures #73
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,67 @@ | ||
--- | ||
platforms: | ||
ubuntu1604: | ||
bazel: last_green | ||
build_targets: | ||
- "//..." | ||
# test_targets: | ||
# - "//..." | ||
- "//src/..." | ||
- "//test/..." | ||
- "//android/..." | ||
- "//rules/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
- "-//src/tools/ak/..." | ||
- "//toolchains/..." | ||
- "//tools/..." | ||
test_targets: | ||
- "//src/..." | ||
- "//test/..." | ||
- "-//src/tools/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
ubuntu1804: | ||
bazel: last_green | ||
build_targets: | ||
- "//..." | ||
# test_targets: | ||
# - "//..." | ||
- "//src/..." | ||
- "//test/..." | ||
- "//android/..." | ||
- "//rules/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has unexisting deps: "@androidsdk//com.android.support:appcompat-v7-25.0.0", |
||
- "-//src/tools/ak/..." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some subdirectories are missing on github. |
||
- "//toolchains/..." | ||
- "//tools/..." | ||
test_targets: | ||
- "//src/..." | ||
- "//test/..." | ||
- "-//src/tools/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
macos: | ||
bazel: last_green | ||
build_targets: | ||
- "//..." | ||
# test_targets: | ||
# - "//..." | ||
- "//src/..." | ||
- "//test/..." | ||
- "//android/..." | ||
- "//rules/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
- "-//src/tools/ak/..." | ||
- "//toolchains/..." | ||
- "//tools/..." | ||
test_targets: | ||
- "//src/..." | ||
- "//test/..." | ||
- "-//src/tools/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
windows: | ||
bazel: last_green | ||
build_targets: | ||
- "//..." | ||
# test_targets: | ||
# - "//..." | ||
- "//src/..." | ||
- "//test/..." | ||
- "//android/..." | ||
- "//rules/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
- "-//src/tools/ak/..." | ||
- "//toolchains/..." | ||
- "//tools/..." | ||
test_targets: | ||
- "//src/..." | ||
- "//test/..." | ||
- "-//src/tools/..." | ||
- "-//src/java/com/example/sampleapp/..." | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the targets are included except //examples/..., which need to be build in a separate task, changing the directroy where their WORKSPACE file is.
The examples build works with Bazel@HEAD and using 2 extra flags:
bazel build --experimental_google_legacy_api --experimental_enable_android_migration_apis //...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I think we added these to the repo-level .bazelrc already.