X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fmain.yml;fp=.github%2Fworkflows%2Fmain.yml;h=69ae4eb39395297cd730283ca24687370311bced;hb=c7b604c4e0267bf30bbbc8c9db78afcd516f138e;hp=379de5e49da57053be24cd2db333e3ecda19283b;hpb=f4bb0da015acb1f6306357e6d8810dc816ed1c82;p=kconfig-hardened-check.git diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 379de5e..69ae4eb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,9 +41,11 @@ jobs: echo ">>>>> check all configs <<<<<" CONFIG_DIR=`find /opt/hostedtoolcache/Python/ -name config_files` CONFIGS=`find $CONFIG_DIR -type f|grep "\.config"` + COUNT=0 for C in $CONFIGS do - echo -e "\n>>>>> checking $C <<<<<" + COUNT=$(expr $COUNT + 1) + echo -e "\n>>>>> checking config number $COUNT <<<<<" kconfig-hardened-check -c $C || exit done - echo -e "\n>>>>> checking done <<<<<" + echo -e "\n>>>>> checking $COUNT configs is done <<<<<"