Skip to content

Commit 6a41bd3

Browse files
committed
ci: more fixes
1 parent 258dae4 commit 6a41bd3

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/build_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ jobs:
257257
fi
258258
259259
build_debian:
260-
name: Debian ${{ matrix.distro }} ${{ matrix.library_mode }} ${{ matrix.boost && 'Boost' }}
260+
name: Debian ${{ matrix.distro }} ${{ matrix.library_mode }} ${{ matrix.cxx }} ${{ matrix.boost && 'Boost' }}
261261
runs-on: ubuntu-latest
262262
container:
263263
image: debian:${{ matrix.distro }}

include/libremidi/backends/pipewire/helpers.hpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
#include <atomic>
1212
#include <thread>
1313

14+
#if defined(__clang__)
15+
#pragma clang diagnostic push
16+
#pragma clang diagnostic ignored "-Wsign-compare"
17+
#endif
18+
1419
NAMESPACE_LIBREMIDI
1520
{
1621
struct pipewire_helpers
@@ -476,3 +481,7 @@ struct pipewire_helpers
476481
}
477482
};
478483
}
484+
485+
#if defined(__clang__)
486+
#pragma clang diagnostic pop
487+
#endif

0 commit comments

Comments
 (0)