Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
permissions: {}

env:
OCAML_DEFAULT_VERSION: 4.14.3
OCAML_DEFAULT_VERSION: "4.14"
# Add OPAMYES=true to the environment, this is usefill to replace `-y` option
# in any opam call
OPAMYES: true
Expand All @@ -27,16 +27,16 @@ jobs:
- ubuntu-latest
- windows-latest
ocaml-compiler:
- 4.11.2
- 4.14.3
- 5.4.0
- "4.11.2"
- "4.14"
- 5
exclude:
# OCaml 4.11.2 is not available on macOS + arm
- os: macos-latest
ocaml-compiler: 4.11.2
ocaml-compiler: "4.11.2"
# Opam 2.2 requires at least OCaml 4.13
- os: windows-latest
ocaml-compiler: 4.11.2
ocaml-compiler: "4.11.2"

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build Javascript
on: [push,pull_request]

env:
OCAML_DEFAULT_VERSION: 4.14.3
OCAML_DEFAULT_VERSION: "4.14"
# Add OPAMYES=true to the environment, this is usefull to replace `-y` option
# in any opam call
OPAMYES: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 4.14.3
ocaml-compiler: "4.14"
dune-cache: true

- name: Update opam repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
pull_request:

env:
OCAML_DEFAULT_VERSION: 4.14.3
OCAML_DEFAULT_VERSION: "4.14"
# Add OPAMYES=true to the environment, this is usefill to replace `-y` option
# in any opam call
OPAMYES: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Linter
on: [push,pull_request]

env:
OCAML_DEFAULT_VERSION: 4.14.3
OCAML_DEFAULT_VERSION: "4.14"
# Add OPAMYES=true to the environment, this is usefill to replace `-y` option
# in any opam call
OPAMYES: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch

env:
OCAML_DEFAULT_VERSION: 4.14.3
OCAML_DEFAULT_VERSION: "4.14"
OPAMYES: true
OPAMLOCKED: locked

Expand Down
Loading