From c7b604c4e0267bf30bbbc8c9db78afcd516f138e Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 30 Mar 2020 16:36:14 +0300 Subject: [PATCH] Count checked configs --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 <<<<<" -- 2.31.1