Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ RUN printf '\n\n' | bash -c "sh <(curl -fsSL https://raw.githubusercontent.com/o
USER vscode
ENV HOME=/home/vscode

RUN opam init -y --shell-setup --enable-shell-hook --compiler=5.5.0 --disable-sandboxing
RUN opam init -y --shell-setup --enable-shell-hook --compiler=5.5.1 --disable-sandboxing
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
matrix:
include:
- os: ubuntu-24.04 # x64
ocaml_compiler: ocaml-variants.5.5.0+options,ocaml-option-static
ocaml_compiler: ocaml-variants.5.5.1+options,ocaml-option-static
upload_binaries: true
upload_libs: true
node-target: linux-x64
rust-target: x86_64-unknown-linux-musl
dune-profile: static
- os: ubuntu-24.04-arm # ARM
ocaml_compiler: ocaml-variants.5.5.0+options,ocaml-option-static
ocaml_compiler: ocaml-variants.5.5.1+options,ocaml-option-static
upload_binaries: true
# Build the playground compiler and run the benchmarks on the fastest runner
build_playground: true
Expand All @@ -54,19 +54,19 @@ jobs:
rust-target: aarch64-unknown-linux-musl
dune-profile: static
- os: macos-15-intel # x64
ocaml_compiler: 5.5.0
ocaml_compiler: 5.5.1
upload_binaries: true
node-target: darwin-x64
rust-target: x86_64-apple-darwin
dune-profile: release
- os: macos-15 # ARM
ocaml_compiler: 5.5.0
ocaml_compiler: 5.5.1
upload_binaries: true
node-target: darwin-arm64
rust-target: aarch64-apple-darwin
dune-profile: release
- os: windows-2025
ocaml_compiler: 5.5.0
ocaml_compiler: 5.5.1
upload_binaries: true
node-target: win32-x64
rust-target: x86_64-pc-windows-gnu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write # For CodeCov OIDC
env:
OS: ubuntu-24.04-arm
OCAML_COMPILER: 5.5.0
OCAML_COMPILER: 5.5.1
RUST_TARGET: aarch64-unknown-linux-gnu
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ opam init

# Any recent OCaml version works as a development compiler
# Can also create local switch with opam switch create
# If you get "No compiler matching `5.5.0' found" error,
# If you get "No compiler matching `5.5.1' found" error,
# then you need to run `opam update && opam upgrade` first
opam switch create 5.5.0
opam switch create 5.5.1

# Install dev dependencies from OPAM
opam install . --deps-only --with-test --with-dev-setup -y
Expand Down
Loading