Skip to content

Commit d5ece9b

Browse files
committed
fix: CI
* Take into account the latest release of ocaml 4.12.x href: https://github.com/ocaml/ocaml/releases/tag/4.12.1
1 parent 526bc07 commit d5ece9b

6 files changed

+6
-6
lines changed

.ci-macosx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ brew update
66
brew install pkg-config
77
brew install opam
88
brew install libev
9-
opam init -y --compiler=4.12.0
9+
opam init -y --compiler=4.12.1
1010
eval $(opam env)
1111

1212
opam install -y -j 2 . --deps-only --locked

learn-ocaml-client.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ depends: [
2929
"ezjsonm"
3030
"lwt" {>= "4.0.0"}
3131
"lwt_ssl"
32-
"ocaml" {= "4.12.0"}
32+
"ocaml" {(>= "4.12") & (< "4.13~")}
3333
"ocamlfind" {build}
3434
"ocp-indent-nlfork"
3535
"ocp-ocamlres" {>= "0.4"}

learn-ocaml-client.opam.locked

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ depends: [
6767
"menhirSdk" {= "20210419"}
6868
"mmap" {= "1.1.0"}
6969
"num" {= "1.4"}
70-
"ocaml" {= "4.12.0"}
70+
"ocaml" {= "4.12.1"}
7171
"ocaml-compiler-libs" {= "v0.12.3"}
7272
"ocaml-config" {= "2"}
7373
"ocaml-migrate-parsetree" {= "1.8.0"}

learn-ocaml.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ depends: [
4040
"magic-mime"
4141
"markup"
4242
"markup-lwt"
43-
"ocaml" {= "4.12.0"}
43+
"ocaml" {(>= "4.12") & (< "4.13~")}
4444
"ocamlfind" {build}
4545
"ocp-indent-nlfork"
4646
"ocp-ocamlres" {= "0.4"}

learn-ocaml.opam.locked

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ depends: [
7373
"menhirSdk" {= "20210419"}
7474
"mmap" {= "1.1.0"}
7575
"num" {= "1.4"}
76-
"ocaml" {= "4.12.0"}
76+
"ocaml" {= "4.12.1"}
7777
"ocaml-compiler-libs" {= "v0.12.3"}
7878
"ocaml-config" {= "2"}
7979
"ocaml-migrate-parsetree" {= "1.8.0"}

scripts/static-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd $(dirname "$0")/..
1010
set -o pipefail
1111
git ls-files -z | xargs -0 tar c | \
1212
docker run --rm -i \
13-
ocamlpro/ocaml:4.12-2021-07-25 \
13+
ocamlpro/ocaml:4.12 \
1414
sh -uexc \
1515
'tar x >&2 &&
1616
sudo apk add openssl-libs-static bash >&2 &&

0 commit comments

Comments
 (0)