Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: test dist packages with meson #686

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ jobs:
meson setup _build -D werror=true
meson compile -C _build
meson install -C _build
meson dist -C _build

7 changes: 7 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
- name: 'Install (meson)'
if: ${{ (matrix.build == 'meson') }}
run: sudo meson install -C ./builddir
- name: 'Build dist package (meson)'
if: ${{ (matrix.build == 'meson') }}
run: meson dist -C ./builddir

- name: 'Configure (autotools)'
if: ${{ (matrix.build == 'autotools') }}
Expand All @@ -57,3 +60,7 @@ jobs:
- name: 'Build and Install (autotools)'
if: ${{ (matrix.build == 'autotools') }}
run: sudo make install
- name: 'Build dist package (autotools)'
if: ${{ (matrix.build == 'autotools') }}
run: make distcheck

2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
run: meson compile -C _build
- name: 'Install'
run: meson install -C _build
- name: 'Build dist package'
run: meson dist -C _build

windows-mingw:
runs-on: windows-2022
Expand Down