From 8b6019e65a6d0204569c367e59a73457f245fe4d Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 26 Jan 2021 09:44:44 +0100 Subject: [PATCH] github: remove distcheck Signed-off-by: Karel Zak --- .github/workflows/cibuild.sh | 4 ++-- .github/workflows/cibuild.yml | 10 ++++------ 2 files changed, 6 insertions(+), 8 deletions(-) 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 -- 2.47.3