Skip to content

Commit

Permalink
reduce verbosity for one build step
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed May 30, 2023
1 parent 5edbd39 commit f479dfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/Dockerfile-alpine3.18-arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ RUN set -eux; \
# https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \
LDFLAGS="-Wl,--strip-all" \
&& make install \
# reduce verbosity so travis logs do not fill up
&& make install > /dev/null \
) \
&& rm -rf /usr/src/python ; \
done \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile-alpine3.18-x86_64
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ RUN set -eux; \
# https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \
LDFLAGS="-Wl,--strip-all" \
&& make install \
# reduce verbosity so travis logs do not fill up
&& make install > /dev/null \
) \
&& rm -rf /usr/src/python ; \
done \
Expand Down

0 comments on commit f479dfb

Please sign in to comment.