Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 6dfbc08

Browse files
committed
ci: remove meson from compatibility tests
1 parent bd550cb commit 6dfbc08

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

.github/workflows/bvt-compatibility.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@ jobs:
1515
- {compiler: clang, version: 18, modules: false}
1616
- {compiler: clang, version: 19, modules: false}
1717
- {compiler: clang, version: 20, modules: true}
18-
buildsystem: [cmake, meson]
1918

2019
steps:
2120
- uses: actions/checkout@v4
2221

23-
- name: install meson
24-
if: ${{ matrix.buildsystem == 'meson' }}
25-
run: pipx install meson
26-
2722
- name: install gcc
2823
if: ${{ matrix.compiler.compiler == 'gcc' }}
2924
run: |
@@ -48,14 +43,7 @@ jobs:
4843
"$CXX" --version
4944
5045
- name: build and run test with cmake
51-
if: ${{ matrix.buildsystem == 'cmake' }}
5246
run: |
5347
cmake -B build -GNinja -DCMAKE_BUILD_TYPE=Release '-DPROXY_BUILD_MODULES=${{ matrix.compiler.modules }}'
5448
cmake --build build -j
5549
ctest --test-dir build -j
56-
57-
- name: build and run test with meson
58-
if: ${{ matrix.buildsystem == 'meson' }}
59-
run: |
60-
meson setup build --buildtype=release -Dmodules=${{ matrix.compiler.modules && 'auto' || 'disabled' }}
61-
meson test -C build

0 commit comments

Comments
 (0)