Explicitly name the nested workspace for tests on Bazel CI (#230)

Explicitly name the nested workspace for tests on Bazel CI
This commit is contained in:
irengrig 2019-03-07 14:25:20 +01:00 committed by GitHub
parent bb9d86c1f2
commit a3593905f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 5 deletions

View File

@ -1,14 +1,22 @@
---
platforms:
tasks:
ubuntu1804:
platform: ubuntu1804
working_directory: examples
test_targets:
- "@rules_foreign_cc_tests//:tests"
- "//:tests"
ubuntu1604:
platform: ubuntu1604
working_directory: examples
test_targets:
- "@rules_foreign_cc_tests//:tests_no_synthetic"
- "//:tests_no_synthetic"
macos:
platform: macos
working_directory: examples
test_targets:
- "@rules_foreign_cc_tests//:cmake_tests"
- "//:cmake_tests"
windows:
platform: windows
working_directory: examples
test_targets:
- "@rules_foreign_cc_tests//:win_tests"
- "//:win_tests"