Skip to content

Commit

Permalink
feat(contract-verifier): Add compilers to contract-verifier (#2738)
Browse files Browse the repository at this point in the history
## What ❔

Adds zksolc 1.5.3, zkvyper 1.5.4

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.
  • Loading branch information
perekopskiy authored Aug 27, 2024
1 parent d8e43e7 commit fd54692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/contract-verifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN mkdir -p /etc/zksolc-bin/vm-1.5.0-a167aa3 && \
chmod +x /etc/zksolc-bin/vm-1.5.0-a167aa3/zksolc

# install zksolc 1.5.x
RUN for VERSION in $(seq -f "v1.5.%g" 0 2); do \
RUN for VERSION in $(seq -f "v1.5.%g" 0 3); do \
mkdir -p /etc/zksolc-bin/$VERSION && \
wget https://github.com/matter-labs/zksolc-bin/raw/main/linux-amd64/zksolc-linux-amd64-musl-$VERSION -O /etc/zksolc-bin/$VERSION/zksolc && \
chmod +x /etc/zksolc-bin/$VERSION/zksolc; \
Expand All @@ -55,7 +55,7 @@ RUN for VERSION in $(seq -f "v1.4.%g" 0 1); do \
done

# install zkvyper 1.5.x
RUN for VERSION in $(seq -f "v1.5.%g" 0 3); do \
RUN for VERSION in $(seq -f "v1.5.%g" 0 4); do \
mkdir -p /etc/zkvyper-bin/$VERSION && \
wget https://github.com/matter-labs/zkvyper-bin/raw/main/linux-amd64/zkvyper-linux-amd64-musl-$VERSION -O /etc/zkvyper-bin/$VERSION/zkvyper && \
chmod +x /etc/zkvyper-bin/$VERSION/zkvyper; \
Expand Down

0 comments on commit fd54692

Please sign in to comment.