diff options
author | Colomban Wendling <[email protected]> | 2023-11-09 16:02:47 +0100 |
---|---|---|
committer | Colomban Wendling <[email protected]> | 2025-03-12 09:45:10 +0100 |
commit | eecfae14be761ec2fe5dbce7138511bfd8dda7f8 (patch) | |
tree | babf9b4d6c25b253b9ce36025ea9390e12292d9f | |
parent | d87be4ee444b968c8175a9df26f180778e0e26ba (diff) | |
download | mate-panel-eecfae14be761ec2fe5dbce7138511bfd8dda7f8.tar.bz2 mate-panel-eecfae14be761ec2fe5dbce7138511bfd8dda7f8.tar.xz |
github actions: Only run distcheck on Debian
It's not really something that usually needs be run everywhere, it
should be pretty stable as long as the build system is properly set
up.
This can still be enabled back for all targets if needed.
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d829e718..e49cd1b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -134,6 +134,7 @@ jobs: run: make -C mate-panel -j ${{ env.JOBS }} check - name: Run distcheck + if: ${{ startsWith(matrix.container, 'debian:') }} run: make -C mate-panel -j ${{ env.JOBS }} distcheck # Do we need the real build for cppcheck run? I don't think so |