From: Karel Zak Date: Fri, 5 Feb 2021 14:03:49 +0000 (+0100) Subject: github: add 'distcheck' workflow job X-Git-Tag: v2.37-rc1~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63900c506b944038631ddec2e52bdd4f39bfa266;p=thirdparty%2Futil-linux.git github: add 'distcheck' workflow job Signed-off-by: Karel Zak --- diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 235215cd54..1aba3c1a79 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -37,3 +37,17 @@ jobs: run: sudo -E .github/workflows/cibuild.sh CHECK - name: Make install run: .github/workflows/cibuild.sh INSTALL + distcheck: + needs: build + runs-on: ubuntu-latest + env: + COMPILER: gcc + COMPILER_VERSION: 10 + SANITIZE: no + steps: + - name: Repository checkout + uses: actions/checkout@v1 + - name: Ubuntu setup + run: sudo -E .github/workflows/cibuild-setup-ubuntu.sh + - name: Make distcheck + run: .github/workflows/cibuild.sh DISTCHECK