File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,11 +68,11 @@ jobs:
6868 - name : Select C++ Tests
6969 shell : bash
7070 run : |
71- bazel query --keep_going '
71+ bazel cquery --config=windows_ci --keep_going '
7272 let scope = //tensorflow/lite/micro/... in
7373 let candidates = kind(cc_test, $scope) in
7474 $candidates except rdeps($candidates, kind(py_binary, deps($candidates)))
75- ' > cc_targets.txt || true
75+ ' --output=starlark --starlark:expr='str(target.label)' > cc_targets.txt || true
7676 - name : Test
7777 shell : bash
7878 run : |
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ jobs:
3131 - name : Select C++ Tests
3232 shell : bash
3333 run : |
34- bazel query --keep_going '
34+ bazel cquery --config=windows_ci --keep_going '
3535 let scope = //tensorflow/lite/micro/... in
3636 let candidates = kind(cc_test, $scope) in
3737 $candidates except rdeps($candidates, kind(py_binary, deps($candidates)))
38- ' > cc_targets.txt || true
38+ ' --output=starlark --starlark:expr='str(target.label)' > cc_targets.txt || true
3939 - name : Test
4040 shell : bash
4141 run : |
You can’t perform that action at this time.
0 commit comments