From f814bb4caf20a79677d28dcc097451b5e0e26f2b Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Tue, 12 Nov 2024 22:31:16 +0000 Subject: [PATCH] build(debian): disable make check by default on pkg build. Enable it manually in github action. --- .github/workflows/main.yml | 10 ++++++++++ debian/rules | 3 +++ 2 files changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c4f143f05..27c8e3d85 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,6 +3,16 @@ name: Ubuntu on: [push, pull_request, workflow_dispatch] jobs: + check: + runs-on: ubuntu-24.04 + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Run basic profile linter check + run: | + make check + build: runs-on: ${{ matrix.os }} strategy: diff --git a/debian/rules b/debian/rules index 6e7d2d6e4..a30a693df 100755 --- a/debian/rules +++ b/debian/rules @@ -8,3 +8,6 @@ # golang/1.19 compresses debug symbols itself. override_dh_dwz: + +# do not run 'make check' by default as it can be long for dev package +override_dh_auto_test: