From: Karel Zak Date: Tue, 26 Jan 2021 08:44:44 +0000 (+0100) Subject: github: remove distcheck X-Git-Tag: v2.37-rc1~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b6019e65a6d0204569c367e59a73457f245fe4d;p=thirdparty%2Futil-linux.git github: remove distcheck Signed-off-by: Karel Zak --- diff --git a/.github/workflows/cibuild.sh b/.github/workflows/cibuild.sh index ae55d36332..e717b16bfc 100755 --- a/.github/workflows/cibuild.sh +++ b/.github/workflows/cibuild.sh @@ -26,8 +26,8 @@ for phase in "${PHASES[@]}"; do ./configure $opts ;; MAKE) - make -j V=1 - make -j check-programs V=1 + make -j + make -j check-programs ;; INSTALL) make install DESTDIR=/tmp/dest diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 1c618c5c2c..16a9e7a4b1 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -20,13 +20,11 @@ jobs: steps: - name: Repository checkout uses: actions/checkout@v1 - - name: Ubuntu setup (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}) + - name: Ubuntu setup run: sudo -E .github/workflows/cibuild-setup-ubuntu.sh - - name: Congure & Make (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}) + - name: Congure & Make run: .github/workflows/cibuild.sh CONFIGURE MAKE - - name: Make install - run: .github/workflows/cibuild.sh INSTALL - - name: Make distcheck - run: .github/workflows/cibuild.sh DISTCHECK - name: Check run: sudo -E .github/workflows/cibuild.sh CHECK + - name: Make install + run: .github/workflows/cibuild.sh INSTALL