X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Ffunctional_test.yml;h=8441cc382e0d1a78762f7dcc8b7e0c298fa54fec;hb=9cda7bc4571fe9a7ef8278b46cc10babe51ce483;hp=31e44d0a73375a6e6778d8f343a08b2c350f6579;hpb=34381808fedcdc6fc7567078a5ad89bc0919ab11;p=kconfig-hardened-check.git diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 31e44d0..8441cc3 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -36,6 +36,7 @@ jobs: - name: Check all configs with the installed tool run: | echo "Check all configs with the installed tool..." + sysctl -a > /tmp/sysctls CONFIG_DIR=`find /opt/hostedtoolcache/Python/ -name config_files` KCONFIGS=`find $CONFIG_DIR -type f | grep -e "\.config" -e "\.gz"` COUNT=0 @@ -43,7 +44,7 @@ jobs: do COUNT=$(expr $COUNT + 1) echo -e "\n>>>>> checking kconfig number $COUNT <<<<<" - kconfig-hardened-check -c $C -l /proc/cmdline + kconfig-hardened-check -c $C -l /proc/cmdline -s /tmp/sysctls done echo -e "\nHave checked $COUNT kconfigs"