Skip to content

Commit

Permalink
CI: Use tools/build/build instead of make
Browse files Browse the repository at this point in the history
To make sure we get unit-test coverage.
  • Loading branch information
jonasdn committed Feb 23, 2022
1 parent 22e06b0 commit 3174aba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
submodules: true

- name: build
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "./scripts/kconfig/merge_config.sh configs/${CONF} configs/defconfig && make -j 12"
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "./scripts/kconfig/merge_config.sh configs/${CONF} configs/defconfig && ./tools/build/build UNIT_TEST_STYLE=min"

apps:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -160,4 +160,4 @@ jobs:
submodules: true

- name: build
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "KCONFIG_ALLCONFIG=configs/all.config make ${TARGET} && make -j 12"
run: docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "KCONFIG_ALLCONFIG=configs/all.config make ${TARGET} && ./tools/build/build UNIT_TEST_STYLE=min"

0 comments on commit 3174aba

Please sign in to comment.