mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-12-25 06:27:49 +01:00
build(debian): disable make check by default on pkg build.
Enable it manually in github action.
This commit is contained in:
parent
4c5761ee71
commit
f814bb4caf
2 changed files with 13 additions and 0 deletions
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
|
@ -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:
|
||||
|
|
3
debian/rules
vendored
3
debian/rules
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue