From: Florian Forster Date: Fri, 24 Nov 2023 08:01:34 +0000 (+0100) Subject: Remove `make distcheck` from the regular "build" action. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83e8225ae8a7775e594dac4b3f8912f02f70796b;p=thirdparty%2Fcollectd.git Remove `make distcheck` from the regular "build" action. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3583ba5e7..808304ffc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,12 +62,6 @@ jobs: with: name: ${{ matrix.container_tag }} test log path: test-suite.log - - name: Install bzip2 - run: | - yum install -y bzip2 || apt install -y bzip2 - - name: Run make distcheck - run: | - make $MAKEFLAG distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-dependency-tracking --enable-debug" experimental: runs-on: ubuntu-20.04 @@ -113,10 +107,3 @@ jobs: with: name: ${{ matrix.container_tag }} test log path: test-suite.log - - name: Install bzip2 - run: | - yum install -y bzip2 || apt install -y bzip2 - - name: Run make distcheck - run: | - make $MAKEFLAGS distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-dependency-tracking --enable-debug" -