drop the faster_release profile for now

This commit is contained in:
Bryan Stitt 2023-06-12 19:02:18 -07:00
parent 26f5aa9db0
commit a8f0c1f6f4

View File

@ -60,7 +60,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
# build the application
# using a "release" profile (which install does by default) is **very** important
# we use the "faster_release" profile which builds with `codegen-units = 1`
# TODO: use the "faster_release" profile which builds with `codegen-units = 1`
RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/app/target \
cargo install \
@ -68,7 +68,6 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
--locked \
--no-default-features \
--path ./web3_proxy \
--profile faster_release \
--root /usr/local/bin \
;