tests.yml: Disable policy_module() selint checks.

It does not support single-parameter policy_module().

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
This commit is contained in:
Chris PeBenito 2022-01-06 09:04:52 -05:00
parent 78276fc43b
commit 5781a2393c
1 changed files with 6 additions and 5 deletions

View File

@ -36,11 +36,12 @@ jobs:
- name: Run file context checker
run: python3 -t -t -E -W error testing/check_fc_files.py
- name: Run SELint
run: |
# disable C-005 (Permissions in av rule or class declaration not ordered) for now: needs fixing
# disable W-005 (Interface call from module not in optional_policy block): refpolicy does not follow this rule
selint --source --recursive --summary --fail --disable C-005 --disable W-005 policy
# Disable selint until it can handle a single parameter policy_module().
# - name: Run SELint
# run: |
# # disable C-005 (Permissions in av rule or class declaration not ordered) for now: needs fixing
# # disable W-005 (Interface call from module not in optional_policy block): refpolicy does not follow this rule
# #selint --source --recursive --summary --fail --disable C-005 --disable W-005 policy
build:
runs-on: ubuntu-latest