From ce7514fc1e3fd25c7f2ab6a25bb0ee3da145baa0 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Tue, 29 Jun 2021 15:13:55 +0200 Subject: [PATCH] Disable Lintian for release builds This change disables the Lintian for release builds, since the linting process takes a lot of time and is already done when the branch is created. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f541a4..b85358c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: if [ "$PVE_BUILD_PROFILE" != "generic" ]; then debchange -l +$PVE_BUILD_PROFILE -D edge --force-distribution -U -M "Specialization for $PVE_BUILD_PROFILE" fi - debuild -e PVE* -e CCACHE_DIR=/var/cache/ccache --prepend-path=/usr/lib/ccache --jobs=auto -b -uc -us + debuild --no-lintian -e PVE* -e CCACHE_DIR=/var/cache/ccache --prepend-path=/usr/lib/ccache --jobs=auto -b -uc -us env: PVE_BUILD_PROFILE: ${{ matrix.build_profile }} PVE_KERNEL_CC: ${{ matrix.build_cc }}