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