Skip to content

Commit

Permalink
Merge branch 'main' into afromher_misc
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido authored Oct 21, 2024
2 parents 1716371 + afbf599 commit 48d4b34
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/minimal.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN mkdir -p $HOME/bin
RUN echo 'export PATH=$HOME/bin:$PATH' | tee --append $HOME/.profile $HOME/.bashrc $HOME/.bash_profile

# Install OCaml
ARG OCAML_VERSION=4.12.0
ARG OCAML_VERSION=4.14.0
RUN opam init --compiler=$OCAML_VERSION --disable-sandboxing
RUN opam option depext-run-installs=true
ENV OPAMYES=1
Expand Down
2 changes: 1 addition & 1 deletion .github/setup-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# coreutils: for the `install` command used in install-ulib.sh
export OPAMYES=1
brew install opam bash gnu-getopt coreutils gnu-sed make
opam init --compiler=4.12.0
opam init --compiler=4.14.0
eval $(opam env)

# Install Z3 and the opam package dependencies
Expand Down
2 changes: 1 addition & 1 deletion share/steel/examples/steel/README_icfp21.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If you are using the provided VM, F\* is already installed and this section can

Setting up a local environment requires a working OCaml setup with OPAM.
Installation instructions for OPAM are available [here](http://opam.ocaml.org/doc/Install.html).
OCaml version from 4.04.0 to 4.12.X should work.
OCaml version 4.14.0 and onwards should work.

F\* depends on a bunch of external packages which you should install using OPAM:

Expand Down
2 changes: 1 addition & 1 deletion src/ci/ci.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile should be run from the root Steel directory

ARG ocaml_version=4.12
ARG ocaml_version=4.14
FROM ocaml/opam:ubuntu-22.04-ocaml-$ocaml_version

# CI dependencies for the Wasm11 test: node.js
Expand Down
2 changes: 1 addition & 1 deletion src/ci/no-fstar-home.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile should be run from the root Steel directory

ARG ocaml_version=4.12
ARG ocaml_version=4.14
FROM ocaml/opam:ubuntu-22.04-ocaml-$ocaml_version

ARG opamthreads=24
Expand Down
2 changes: 1 addition & 1 deletion src/ci/opam.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile should be run from the root Steel directory

ARG ocaml_version=4.12
ARG ocaml_version=4.14
FROM ocaml/opam:ubuntu-22.04-ocaml-$ocaml_version

ARG opamthreads=24
Expand Down
2 changes: 1 addition & 1 deletion src/ci/package.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This Dockerfile should be run from the root Steel directory

ARG ocaml_version=4.12
ARG ocaml_version=4.14
FROM ocaml/opam:ubuntu-20.04-ocaml-$ocaml_version

# CI dependencies for the Wasm11 test: node.js
Expand Down

0 comments on commit 48d4b34

Please sign in to comment.