Skip to content

Commit ffcd683

Browse files
committed
Fixed again
1 parent ba95ae6 commit ffcd683

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test_hosted.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

.github/workflows/test_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)