Commit 39ca66d8 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

ci-builder: install jq earlier (#9047)

The foundry install script uses `jq` so we must install `jq` as early
as possible in `ci-builder` to ensure that its always present.

Follow up to https://github.com/ethereum-optimism/optimism/pull/9042
which fixes the broken build from https://github.com/ethereum-optimism/optimism/pull/8920.

I don't think that #8920 broke the fix in this commit so perhaps the
build was broken longer than we thought? Either way, we need new forge
version in CI that was introduced in https://github.com/ethereum-optimism/optimism/pull/9038
so we need a successful build of `ci-builder`.
parent a035ce97
......@@ -10,7 +10,7 @@ SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y curl build-essential git clang lld curl
apt-get install -y curl build-essential git clang lld curl jq
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh && \
chmod +x ./rustup.sh && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment