-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use clang. Filter out mips64le in debian-sid for now. It fails to test, something broken with binary generation.
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,12 @@ ARG BASE_IMAGE="debian:sid-slim" | |
FROM ${BASE_IMAGE} AS build | ||
LABEL maintainer="Maksym Sobolyev <[email protected]>" | ||
|
||
ARG BUILD_PKGS="cmake make gcc libc6-dev openssl" | ||
ARG BUILD_PKGS="cmake make clang libc6-dev openssl" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get install -y --no-install-recommends ${BUILD_PKGS} | ||
WORKDIR /src | ||
RUN --mount=type=bind,target=.,rw cmake -B build && make -C build all test install | ||
RUN --mount=type=bind,target=.,rw cmake -B build && \ | ||
make -C build CTEST_OUTPUT_ON_FAILURE=1 all test install | ||
FROM ${BASE_IMAGE} AS clean | ||
COPY --from=build /usr/local/lib/libg722.* /usr/local/lib/ | ||
COPY --from=build --exclude=g722_common.h --exclude=g722_private.h \ | ||
|