Count checked configs
authorAlexander Popov <alex.popov@linux.com>
Mon, 30 Mar 2020 13:36:14 +0000 (16:36 +0300)
committerAlexander Popov <alex.popov@linux.com>
Mon, 30 Mar 2020 13:52:17 +0000 (16:52 +0300)
.github/workflows/main.yml

index 379de5e49da57053be24cd2db333e3ecda19283b..69ae4eb39395297cd730283ca24687370311bced 100644 (file)
@@ -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 <<<<<"