Skip to content

Commit 2eebe19

Browse files
committed
Update the solver snapshot
1 parent 02b0c15 commit 2eebe19

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN case ${TARGETPLATFORM} in \
3030
printf "Unsupported architecture: %s\n" "${TARGETPLATFORM}" >&2 \
3131
exit 1 ;; \
3232
esac && \
33-
curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20251112/ubuntu-22.04-${WHAT4_SOLVERS_ARCH}-bin.zip"
33+
curl -o solvers.zip -sL "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20260119/ubuntu-22.04-${WHAT4_SOLVERS_ARCH}-bin.zip"
3434
RUN unzip solvers.zip && rm solvers.zip && chmod +x *
3535
WORKDIR /cryptol
3636
ENV PATH=/cryptol/rootfs/usr/local/bin:/home/cryptol/.local/bin:/home/cryptol/.ghcup/bin:$PATH

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Cryptol currently uses Microsoft Research's [Z3 SMT
4646
solver](https://github.com/Z3Prover/z3) by default to solve constraints
4747
during type checking, and as the default solver for the `:sat` and
4848
`:prove` commands. Cryptol generally requires the most recent version
49-
of Z3, but you can see the specific version tested in CI by looking [here](https://github.com/GaloisInc/what4-solvers/releases/tag/snapshot-20251112).
49+
of Z3, but you can see the specific version tested in CI by looking [here](https://github.com/GaloisInc/what4-solvers/releases/tag/snapshot-20260119).
5050

5151
You can download Z3 binaries for a variety of platforms from their
5252
[releases page](https://github.com/Z3Prover/z3/releases). If you

cryptol-remote-api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN case ${TARGETPLATFORM} in \
6868
printf "Unsupported architecture: %s\n" "${TARGETPLATFORM}" >&2 \
6969
exit 1 ;; \
7070
esac && \
71-
curl -sL -o solvers.zip "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20251112/ubuntu-22.04-${WHAT4_SOLVERS_ARCH}-bin.zip" && \
71+
curl -sL -o solvers.zip "https://github.com/GaloisInc/what4-solvers/releases/download/snapshot-20260119/ubuntu-22.04-${WHAT4_SOLVERS_ARCH}-bin.zip" && \
7272
unzip solvers.zip && rm solvers.zip && chmod +x *
7373
USER root
7474
RUN chown -R root:root /cryptol/rootfs

dev/dev_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ GHCUP_URL="https://downloads.haskell.org/~ghcup"
3737
GHC_VERSION="9.6.7"
3838
CABAL_VERSION="3.10.3.0"
3939

40-
WHAT4_SOLVERS_SNAPSHOT="snapshot-20251112"
40+
WHAT4_SOLVERS_SNAPSHOT="snapshot-20260119"
4141
WHAT4_SOLVERS_URL="https://github.com/GaloisInc/what4-solvers/releases/download/$WHAT4_SOLVERS_SNAPSHOT"
4242
WHAT4_SOLVERS_MACOS_13="macos-13-X64-bin.zip"
4343
WHAT4_SOLVERS_MACOS_14="macos-14-ARM64-bin.zip"

0 commit comments

Comments
 (0)