Skip to content

Commit

Permalink
Merge #191
Browse files Browse the repository at this point in the history
191: CI: do verbose "make buildtest" r=benpicco a=kaspar030

Disables "make buildtest" output redirection, so build errors don't get lost.

Co-authored-by: Kaspar Schleiser <[email protected]>
  • Loading branch information
bors[bot] and kaspar030 authored May 12, 2022
2 parents 750de4c + 95ac31f commit db7fb75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- name: GNU build test
run: |
make -CRIOT/examples/hello-world buildtest
make -CRIOT/examples/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest
env:
BUILD_IN_DOCKER: 1
DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest
Expand All @@ -120,7 +120,7 @@ jobs:
- name: LLVM build test
run: |
make -CRIOT/examples/hello-world buildtest
make -CRIOT/examples/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest
env:
TOOLCHAIN: llvm
BUILD_IN_DOCKER: 1
Expand All @@ -137,7 +137,7 @@ jobs:
# Note that `git switch master` does not work because the checkout
# action does only minimal fetching.
(cd RIOT && git fetch origin master && git checkout FETCH_HEAD)
make -CRIOT/examples/rust-hello-world buildtest
make -CRIOT/examples/rust-hello-world BUILDTEST_MAKE_REDIRECT='' buildtest
(cd RIOT && git switch -)
env:
BUILD_IN_DOCKER: 1
Expand Down

0 comments on commit db7fb75

Please sign in to comment.