Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
os:
- ubuntu-latest
ocaml-compiler:
- 5.3.x
- 5.4.x

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

Expand All @@ -32,7 +32,7 @@ jobs:
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
mbarbin: https://github.com/mbarbin/opam-repository.git
# alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
# janestreet-bleeding: https://github.com/janestreet/opam-repository.git
# janestreet-bleeding-external: https://github.com/janestreet/opam-repository.git#external-packages

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Setup OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "5.3.x"
ocaml-compiler: "5.4.x"
dune-cache: true
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
mbarbin: https://github.com/mbarbin/opam-repository.git
# alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
# janestreet-bleeding: https://github.com/janestreet/opam-repository.git
# janestreet-bleeding-external: https://github.com/janestreet/opam-repository.git#external-packages

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/more-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ jobs:
- macos-latest
- ubuntu-latest
ocaml-compiler:
- 5.4.x
- 5.3.x
- 5.2.x
exclude:
# We exclude the combination already tested in the 'ci' workflow.
- os: ubuntu-latest
ocaml-compiler: 5.3.x
ocaml-compiler: 5.4.x

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
- name: Setup OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "5.3.x"
ocaml-compiler: "5.4.x"
dune-cache: true
opam-repositories: |
default: https://github.com/ocaml/opam-repository.git
mbarbin: https://github.com/mbarbin/opam-repository.git
# alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
alpha: https://github.com/kit-ty-kate/opam-alpha-repository.git
# janestreet-bleeding: https://github.com/janestreet/opam-repository.git
# janestreet-bleeding-external: https://github.com/janestreet/opam-repository.git#external-packages

Expand Down
3 changes: 1 addition & 2 deletions doc/docs/explanation/exploratory-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ COMMANDS
descendance [OPTION]… REV REV
Print descendance relation between 2 revisions.

find-enclosing-repo-root [--from=path/to/dir] [--store=VAL]
[OPTION]…
find-enclosing-repo-root [--from=path/to/dir] [--store=VAL] [OPTION]…
Find the root of the enclosing-repo.

gca [OPTION]… [REV]…
Expand Down
8 changes: 2 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,7 @@
(synopsis "Tests & Examples for volgo")
(depends
(ocaml
(and
(>= 5.2)
(< 5.4~)))
(>= 5.2))
(astring
(>= 0.8.5))
(base
Expand Down Expand Up @@ -430,9 +428,7 @@
(allow_empty) ; The package is attached to stanza in doc/ however dune doesn't see it.
(depends
(ocaml
(and
(>= 5.3)
(< 5.4~)))
(>= 5.4))
(ocamlformat
(= 0.28.1))
(astring
Expand Down
2 changes: 1 addition & 1 deletion lib/volgo/src/graph.ml
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ module Summary = struct
[@@deriving_inline sexp_of]

let rec sexp_of_t =
(let (drop_if__037_ : t list -> Stdlib.Bool.t) = List.is_empty in
(let drop_if__037_ : t list -> Stdlib.Bool.t = List.is_empty in
fun { refs = refs__022_
; roots = roots__028_
; leaves = leaves__030_
Expand Down
2 changes: 1 addition & 1 deletion volgo-dev.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ doc: "https://mbarbin.github.io/vcs/"
bug-reports: "https://github.com/mbarbin/vcs/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "5.3" & < "5.4~"}
"ocaml" {>= "5.4"}
"ocamlformat" {= "0.28.1"}
"astring" {>= "0.8.5"}
"base" {>= "v0.17"}
Expand Down
2 changes: 1 addition & 1 deletion volgo-tests.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ doc: "https://mbarbin.github.io/vcs/"
bug-reports: "https://github.com/mbarbin/vcs/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "5.2" & < "5.4~"}
"ocaml" {>= "5.2"}
"astring" {>= "0.8.5"}
"base" {>= "v0.17"}
"base_quickcheck" {>= "v0.17"}
Expand Down