From e3503e95d12774be3d7ac2d555d65e8499a79881 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Tue, 31 May 2022 00:07:18 +0300 Subject: [PATCH] github actions: Collect coverage for cmdline checking --- .github/workflows/main.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2825cf..70a0be5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,7 +50,7 @@ jobs: - name: Get source code for collecting coverage uses: actions/checkout@v2 - - name: Collect coverage + - name: Collect coverage for the basic functionality run: | echo ">>>>> get help <<<<<" coverage run -a --branch bin/kconfig-hardened-check @@ -76,7 +76,10 @@ jobs: coverage run -a --branch bin/kconfig-hardened-check -p ARM -m verbose coverage run -a --branch bin/kconfig-hardened-check -p ARM -m json - echo ">>>>> check the example kconfig files <<<<<" + echo ">>>>> use local cmdline as an example <<<<<" + cat /proc/cmdline + + echo ">>>>> check the example kconfig files and cmdline <<<<<" CONFIG_DIR=`find . -name config_files` CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"` COUNT=0 @@ -84,11 +87,11 @@ jobs: do COUNT=$(expr $COUNT + 1) echo -e "\n>>>>> checking config number $COUNT <<<<<" - coverage run -a --branch bin/kconfig-hardened-check -c $C - coverage run -a --branch bin/kconfig-hardened-check -c $C -m verbose > /dev/null - coverage run -a --branch bin/kconfig-hardened-check -c $C -m json - coverage run -a --branch bin/kconfig-hardened-check -c $C -m show_ok - coverage run -a --branch bin/kconfig-hardened-check -c $C -m show_fail + coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline + coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m verbose > /dev/null + coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m json + coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m show_ok + coverage run -a --branch bin/kconfig-hardened-check -c $C -l /proc/cmdline -m show_fail done echo -e "\n>>>>> checking $COUNT configs is done <<<<<" coverage xml -i -o coverage.xml -- 2.31.1