1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 21:31:15 +02:00

Move c99 flag from BUILD file to bazel cmd line (#366)

* Move `c99` flag from BUILD file to bazel cmd line

Requiring c99 for everyone breaks downstream users.

* Remove requiring bzlmod
This commit is contained in:
Guillaume Chatelet
2024-09-13 11:53:30 +02:00
committed by GitHub
parent 747d711a36
commit 164bcd7eb0
3 changed files with 34 additions and 9 deletions

View File

@ -25,13 +25,7 @@ COPY . .
FROM devel AS build
RUN bazel version
RUN bazel build \
-c opt \
--subcommands=true \
...
RUN bazel build --config=ci ...
FROM build AS test
RUN bazel test \
-c opt \
--test_output=errors \
...
RUN bazel test --config=ci ...