Skip to content

Commit 41794b9

Browse files
authored
Fix GTEST_FILTER on CI (#338)
1 parent 4b74994 commit 41794b9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/unittests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,9 @@ jobs:
4848
run: ./configure.sh <<< $'n\n'
4949
shell: bash
5050
- name: "TF Lite Arm32: Cross-compile and run unit tests in qemu"
51-
run: ./bazelisk test larq_compute_engine/tests:cc_tests_arm32_qemu --config=rpi3 --test_output=all
52-
env:
53-
GTEST_FILTER: -*BigTest*
51+
run: ./bazelisk test larq_compute_engine/tests:cc_tests_arm32_qemu --config=rpi3 --test_output=all --action_env=GTEST_FILTER="-*BigTest*"
5452
- name: "TF Lite Aarch64: Cross-compile and run unit tests in qemu"
55-
run: ./bazelisk test larq_compute_engine/tests:cc_tests_aarch64_qemu --config=aarch64 --test_output=all
56-
env:
57-
GTEST_FILTER: -*BigTest*
53+
run: ./bazelisk test larq_compute_engine/tests:cc_tests_aarch64_qemu --config=aarch64 --test_output=all --action_env=GTEST_FILTER="-*BigTest*"
5854
- name: "Benchmark utility: check it builds successfully"
5955
run: ./bazelisk build //larq_compute_engine/tflite/benchmark:lce_benchmark_model --config=aarch64 --compilation_mode=fastbuild
6056
- name: "ImageNet evaluation utility: check it builds successfully"

0 commit comments

Comments
 (0)