Skip to content

Commit

Permalink
Merge pull request ethereum-optimism#8166 from ethereum-optimism/cl/s…
Browse files Browse the repository at this point in the history
…trip-foundry-bins

fix(ci): Strip built binaries in foundry build + bump version
  • Loading branch information
tynes authored Nov 14, 2023
2 parents 34b094a + bda85e4 commit 3fff5d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .foundryrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b205b6add562c778206a9edba1c0676c04a709b1
1a2e2e071ef0a1b6f41fdcba773b04c30498752f
6 changes: 5 additions & 1 deletion ops/docker/ci-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && \

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh && \
chmod +x ./rustup.sh && \
./rustup.sh -y
sh rustup.sh -y

# Install nightly toolchain
RUN source $HOME/.profile && rustup update nightly
Expand All @@ -24,6 +24,10 @@ COPY ./ops/scripts/install-foundry.sh ./install-foundry.sh
RUN curl -L https://foundry.paradigm.xyz | bash
RUN source $HOME/.profile && ./install-foundry.sh

RUN strip /root/.foundry/bin/forge && \
strip /root/.foundry/bin/cast && \
strip /root/.foundry/bin/anvil

FROM --platform=linux/amd64 ghcr.io/crytic/echidna/echidna:v2.0.4 as echidna-test

FROM --platform=linux/amd64 debian:bullseye-slim as go-build
Expand Down

0 comments on commit 3fff5d5

Please sign in to comment.