Skip to content

Commit 5643e65

Browse files
committed
Bumping everything to OCaml 4.14.0
1 parent 1e73a3a commit 5643e65

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.devcontainer/minimal.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN wget -nv https://download.visualstudio.microsoft.com/download/pr/cd0d0a4d-2a
4242
rm -f dotnet-sdk*.tar.gz
4343

4444
# Install OCaml
45-
ARG OCAML_VERSION=4.12.0
45+
ARG OCAML_VERSION=4.14.0
4646
RUN opam init --compiler=$OCAML_VERSION --disable-sandboxing
4747
RUN opam option depext-run-installs=true
4848
ENV OPAMYES=1

.docker/opam.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Dockerfile should be run from the root FStar directory
22

3-
ARG ocaml_version=4.12
3+
ARG ocaml_version=4.14
44
FROM ocaml/opam:ubuntu-ocaml-$ocaml_version
55

66
# FIXME: the `opam depext` command should be unnecessary with opam 2.1

.docker/package.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile should be run from the root FStar directory
22

33
# Build the package
4-
ARG ocaml_version=4.12
4+
ARG ocaml_version=4.14
55
ARG CI_THREADS=24
66

77
FROM ocaml/opam:ubuntu-20.04-ocaml-$ocaml_version AS fstarbuild

.docker/release.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile should be run from the root FStar directory
22

33
# Build the package
4-
ARG ocaml_version=4.12
4+
ARG ocaml_version=4.14
55
ARG CI_THREADS=24
66

77
FROM ocaml/opam:ubuntu-20.04-ocaml-$ocaml_version AS fstarbuild

.github/setup-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# coreutils: for the `install` command used in install-ulib.sh
55
export OPAMYES=1
66
brew install opam bash gnu-getopt coreutils gnu-sed
7-
opam init --compiler=4.12.0
7+
opam init --compiler=4.14.0
88
eval $(opam env)
99

1010
# Install Z3 and the opam package dependencies

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ need to perform the following step before your first use:
8080
$ fstar.exe --version
8181
F* 0.9.8.0~dev
8282
platform=Linux_x86_64
83-
compiler=OCaml 4.12.0
83+
compiler=OCaml 4.14.0
8484
date=yyyy-mm-ddThh:nn:ss+02:00
8585
commit=xxxxxxxx
8686
$ z3 --version
@@ -209,7 +209,7 @@ The steps require a working OCaml setup. OCaml version 4.14.X should work.
209209
```sh
210210
$ opam update
211211
$ opam switch list-available
212-
$ opam switch create ocaml-variants.4.12.0+mingw64c
212+
$ opam switch create ocaml-variants.4.14.0+mingw64c
213213
```
214214

215215
3. Afterwards you can install the `depext` and `depext-cygwinports` packages,

0 commit comments

Comments
 (0)