X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Fmain.yml;h=4f543d04fab36df37986976d54c012b3302e70dd;hb=c2e241009c4bdf10a5424e7fe1611cdb0a9d4d23;hp=9a810590012fc60e427d17b11741181b13348abd;hpb=9d0eb7eeae621bc455bd7af8ba1a9d9913d7a908;p=kconfig-hardened-check.git diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a81059..4f543d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 4 + max-parallel: 3 fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: @@ -21,7 +21,7 @@ jobs: steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -37,18 +37,18 @@ jobs: run: | echo ">>>>> check all configs <<<<<" CONFIG_DIR=`find /opt/hostedtoolcache/Python/ -name config_files` - CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"` + KCONFIGS=`find $CONFIG_DIR -type f | grep "\.config"` COUNT=0 - for C in $CONFIGS + for C in $KCONFIGS do COUNT=$(expr $COUNT + 1) echo -e "\n>>>>> checking config number $COUNT <<<<<" - kconfig-hardened-check -c $C + kconfig-hardened-check -c $C -l /proc/cmdline done echo -e "\n>>>>> checking $COUNT configs is done <<<<<" - name: Get source code for collecting coverage - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Collect coverage for the basic functionality run: | @@ -76,24 +76,25 @@ 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 ">>>>> use local cmdline as an example <<<<<" - cat /proc/cmdline - echo ">>>>> check the example kconfig files and cmdline <<<<<" + cat /proc/cmdline + echo "l1tf=off mds=full randomize_kstack_offset=on iommu.passthrough=0" > ./cmdline_example + cat ./cmdline_example CONFIG_DIR=`find . -name config_files` - CONFIGS=`find $CONFIG_DIR -type f | grep "\.config"` + KCONFIGS=`find $CONFIG_DIR -type f | grep "\.config"` COUNT=0 - for C in $CONFIGS + for C in $KCONFIGS 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 -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 + coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example + coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m verbose > /dev/null + coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m json + coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m show_ok + coverage run -a --branch bin/kconfig-hardened-check -c $C -l ./cmdline_example -m show_fail done echo -e "\n>>>>> checking $COUNT configs is done <<<<<" @@ -157,11 +158,15 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: - file: ./coverage.xml + files: ./coverage.xml flags: functional_test name: codecov-umbrella fail_ci_if_error: true verbose: true + - name: Erase coverage + run: | + coverage erase + rm ./coverage.xml