Skip to content

Commit

Permalink
fix(ci): use forge-build in dockerfile (ethereum-optimism#12377)
Browse files Browse the repository at this point in the history
Updates the dockerfile for building contracts-bedrock to use
just forge-build instead of just build since just build now does
a few other things for the sake of devex.
  • Loading branch information
smartcontracts authored Oct 8, 2024
1 parent c55dcd2 commit fb62380
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ jobs:
name: Build contracts
environment:
FOUNDRY_PROFILE: ci
command: just build
command: just forge-build
working_directory: packages/contracts-bedrock
- run:
name: Publish artifacts
Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.packages
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY .gitmodules ./.gitmodules

RUN git submodule update --init --recursive \
&& cd packages/contracts-bedrock \
&& just build \
&& just forge-build \
&& echo $(git rev-parse HEAD) > .gitcommit

FROM --platform=linux/amd64 debian:bookworm-20240812-slim as contracts-bedrock
Expand Down

0 comments on commit fb62380

Please sign in to comment.