Skip to content

Commit

Permalink
Merge pull request #7281 from lsrcz/add-grisette
Browse files Browse the repository at this point in the history
Add grisette
  • Loading branch information
DanBurton authored Jan 12, 2024
2 parents 38f122a + 2d88ebe commit 60156db
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build-constraints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ packages:
"Dominick Samperi <djsamperi@gmail.com> @djsamperi":
- mathlist

"Sirui Lu <lsrcz@outlook.com> @lsrcz":
- grisette

"Alexey Tochin <Alexey.Tochin@gmail.com> @alexeytochin":
- simple-expr
- inf-backprop
Expand Down
10 changes: 10 additions & 0 deletions docker/03-custom-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@ wget -qO - https://packages.confluent.io/deb/5.2/archive.key | apt-key add -
add-apt-repository "deb https://packages.confluent.io/deb/5.2 stable main"
apt-get update && apt install -y librdkafka-dev

# Install z3, for grisette test suite
Z3_VER=4.12.4
(
cd /usr/local \
&& wget https://github.com/Z3Prover/z3/releases/download/z3-${Z3_VER}/z3-${Z3_VER}-x64-glibc-2.35.zip \
&& unzip z3-${Z3_VER}-x64-glibc-2.35.zip \
&& rm z3-${Z3_VER}-x64-glibc-2.35.zip \
&& ln -s /usr/local/z3-${Z3_VER}-x64-glibc-2.35/bin/z3 /usr/bin/z3
)

LIBJWT_VER=1.12.1
(
pushd /tmp \
Expand Down

0 comments on commit 60156db

Please sign in to comment.