Skip to content

Commit

Permalink
Skip llt-secrets check in builder images
Browse files Browse the repository at this point in the history
  • Loading branch information
jjanowsk committed Nov 26, 2024
1 parent af26dfd commit 25028ff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions builders/build-android-rust/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,6 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \

# Install `sccache`
RUN cargo install sccache --version 0.4.2

# Skip llt-secrets check when building in builder images
ENV BYPASS_LLT_SECRETS=1
5 changes: 4 additions & 1 deletion builders/build-linux-rust/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,7 @@ RUN set -eux; \
/var/lib/apt/lists/* \
/var/cache/apt/* /var/log/* \
/usr/share/doc/ \
/usr/share/man/
/usr/share/man/

# Skip llt-secrets check when building in builder images
ENV BYPASS_LLT_SECRETS=1
3 changes: 3 additions & 0 deletions builders/build-windows-rust/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ RUN wget -q https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz; \

# Install `sccache`
RUN cargo install sccache --version 0.4.2 && rm -rf /usr/local/cargo/registry

# Skip llt-secrets check when building in builder images
ENV BYPASS_LLT_SECRETS=1

0 comments on commit 25028ff

Please sign in to comment.