From 7a5200ea8155afb5f7e037ac1312a34eb577042f Mon Sep 17 00:00:00 2001 From: LHerskind Date: Fri, 22 Mar 2024 09:50:43 +0000 Subject: [PATCH] chore: skip slither in docker --- l1-contracts/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/l1-contracts/Dockerfile b/l1-contracts/Dockerfile index bb8cefde32c..e5349824677 100644 --- a/l1-contracts/Dockerfile +++ b/l1-contracts/Dockerfile @@ -4,8 +4,8 @@ FROM ubuntu:lunar RUN apt update && apt install curl git jq bash nodejs npm python3.11-full python3-pip -y # Use virtualenv, do not try to use pipx, it's not working. -RUN python3 -m venv /root/.venv -RUN /root/.venv/bin/pip3 install slither-analyzer==0.10.0 slitherin==0.5.0 +# RUN python3 -m venv /root/.venv +# RUN /root/.venv/bin/pip3 install slither-analyzer==0.10.0 slitherin==0.5.0 RUN curl -L https://foundry.paradigm.xyz | bash # Set env variables for foundry and venv @@ -20,7 +20,7 @@ RUN forge clean && forge fmt --check && forge build && forge test --no-match-con RUN npm install --global yarn RUN yarn && yarn lint -RUN git add . && yarn slither && yarn slither-has-diff +# RUN git add . && yarn slither && yarn slither-has-diff RUN forge build FROM scratch