Skip to content

Commit

Permalink
Disable failing tests on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed Apr 21, 2024
1 parent d4ef7bc commit bae4a1a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,14 @@ jobs:
export LIBRARY_PATH=${LIBRARY_PATH}:/usr/local/opt/icu4c/lib
cmake --build . --config $BUILD_TYPE
- name: Test
- name: Test (Ubuntu)
if: ${{matrix.os == 'ubuntu-latest'}}
working-directory: ${{github.workspace}}/build
shell: bash
run: ./audiowaveform_tests --gtest_filter=-ProgressReporterTest.*

- name: Test (MacOS)
if: ${{matrix.os == 'macos-latest'}}
working-directory: ${{github.workspace}}/build
shell: bash
run: ./audiowaveform_tests --gtest_filter=-ProgressReporterTest.*:*Opus*

0 comments on commit bae4a1a

Please sign in to comment.