Skip to content

Commit

Permalink
more release wrangling
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Jan 7, 2025
1 parent 689ff4c commit d3ea4e1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .docker/release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN { type -p curl >/dev/null || sudo apt-get install curl -y ; } \

# Install .NET
RUN sudo apt-get update && sudo apt-get install --yes --no-install-recommends \
libicu66
libicu70

# (for .NET, cf. https://aka.ms/dotnet-missing-libicu )
# CI dependencies: .NET Core
Expand All @@ -53,11 +53,6 @@ ENV PATH=${PATH}:$DOTNET_ROOT:$DOTNET_ROOT/tools
RUN git config --global user.name "Dzomo, the Everest Yak" && \
git config --global user.email "[email protected]"

# Download and extract z3, but do not add it in the PATH
# We download a z3 that does not depend on libgomp
ADD --chown=opam:opam https://github.com/tahina-pro/z3/releases/download/z3-4.8.5-linux-clang/z3-4.8.5-linux-clang-x86_64.tar.gz z3.tar.gz
RUN tar xf z3.tar.gz

ADD --chown=opam:opam ./ FStar/

# Check if we need to create a tag
Expand All @@ -67,7 +62,7 @@ RUN --mount=type=secret,id=DZOMO_GITHUB_TOKEN eval $(opam env) && env GH_TOKEN=$
RUN eval $(opam env) && env OTHERFLAGS='--admit_smt_queries true' PATH=$HOME/z3:$PATH make -j $CI_THREADS -C FStar package

# Test the package with its Z3, without OCaml or any other dependency
FROM ubuntu:20.04 AS fstarnoocaml
FROM ubuntu:22.04 AS fstarnoocaml

# Install some dependencies
RUN apt-get update && \
Expand Down

0 comments on commit d3ea4e1

Please sign in to comment.