From 1079f30706dd0a2bc168c7739add2a92d7038abb Mon Sep 17 00:00:00 2001 From: Ryan Trauntvein Date: Mon, 8 Jun 2020 15:28:01 -0700 Subject: [PATCH] nocheck debuild --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d37d3bdc..a44864e1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,19 +21,19 @@ jobs: if: matrix.os != 'macos-latest' - name: Install Dependencies (macOS) run: | - brew install gnu-tar shellcheck jq pigz coreutils + brew install gnu-tar shellcheck jq pigz coreutils gnu-sed gnu-getopt brew unlink parallel brew install moreutils gawk if: matrix.os == 'macos-latest' - name: Get Sources uses: actions/checkout@v2 - - name: Test (macOS) + - name: Test run: | export PATH="$PATH:/snap/bin" make test shell: bash if: matrix.os == 'macos-latest' - name: Build (Linux) - run: debuild -uc -us + run: DEB_BUILD_OPTIONS=nocheck debuild -us -uc if: matrix.os != 'macos-latest'