From a3593905f73ce19c09d21f9968f1d3f5bc115157 Mon Sep 17 00:00:00 2001 From: irengrig Date: Thu, 7 Mar 2019 14:25:20 +0100 Subject: [PATCH] Explicitly name the nested workspace for tests on Bazel CI (#230) Explicitly name the nested workspace for tests on Bazel CI --- .bazelci/config.yaml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.bazelci/config.yaml b/.bazelci/config.yaml index f12de43e..f2ae3e5f 100644 --- a/.bazelci/config.yaml +++ b/.bazelci/config.yaml @@ -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"