Skip to content

Commit

Permalink
ci: add meson setup -D {distconf,module}dir=relative/ checks
Browse files Browse the repository at this point in the history
Based on the autotools build, meson does not support relative
directories for distconfig and moduledir. We fixed that recently, but
never added a check so we don't regress.

Signed-off-by: Emil Velikov <[email protected]>
  • Loading branch information
evelikov committed Nov 15, 2024
1 parent 5c24480 commit ebd9996
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ jobs:
.github/print-kdir.sh >> "$GITHUB_ENV"
- name: configure checks (meson)
if: ${{ matrix.build == 'meson' }}
run: |
meson setup -D distconfdif=relative/ build/ && false
meson setup -D moduledir=relative/ build/ && false
- name: configure (meson)
if: ${{ matrix.build == 'meson' }}
run: mkdir build && cd build && meson setup --native-file ../build-dev.ini ${{ matrix.container.meson_setup }} . ..
Expand Down

0 comments on commit ebd9996

Please sign in to comment.