Skip to content

Commit

Permalink
speed up unit tests (FreeRTOS#1089)
Browse files Browse the repository at this point in the history
Co-authored-by: Tony Josi <[email protected]>
  • Loading branch information
HTRamsey and tony-josi-aws authored Feb 5, 2024
1 parent 0d74d49 commit 6310e61
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
cd ../..
sudo apt-get install -y lcov
sudo apt-get install -y unifdef
sudo apt-get install -y ninja-build
echo "::endgroup::"
echo "::group:: ${{ env.stepName }}"
cmake -S test/unit-test -B test/unit-test/build/
make -C test/unit-test/build/ all
cmake -S test/unit-test -B test/unit-test/build/ -G Ninja
cmake --build test/unit-test/build/ --target all
echo "::endgroup::"
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }}"
Expand All @@ -59,7 +60,7 @@ jobs:
run: |
# ${{ env.stepName }}
echo "::group::Build Tests"
make -C test/unit-test/build/ coverage
cmake --build test/unit-test/build/ --target coverage
echo "::endgroup::"
echo -e "${{ env.bashPass }} Built Coverage Tests ${{ env.bashEnd }}"
Expand Down

0 comments on commit 6310e61

Please sign in to comment.