Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
* Take into account the latest release of ocaml 4.12.x

  href: https://github.com/ocaml/ocaml/releases/tag/4.12.1
  • Loading branch information
erikmd committed Sep 25, 2021
1 parent 526bc07 commit d5ece9b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ci-macosx.sh
Expand Up @@ -6,7 +6,7 @@ brew update
brew install pkg-config
brew install opam
brew install libev
opam init -y --compiler=4.12.0
opam init -y --compiler=4.12.1
eval $(opam env)

opam install -y -j 2 . --deps-only --locked
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml-client.opam
Expand Up @@ -29,7 +29,7 @@ depends: [
"ezjsonm"
"lwt" {>= "4.0.0"}
"lwt_ssl"
"ocaml" {= "4.12.0"}
"ocaml" {(>= "4.12") & (< "4.13~")}
"ocamlfind" {build}
"ocp-indent-nlfork"
"ocp-ocamlres" {>= "0.4"}
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml-client.opam.locked
Expand Up @@ -67,7 +67,7 @@ depends: [
"menhirSdk" {= "20210419"}
"mmap" {= "1.1.0"}
"num" {= "1.4"}
"ocaml" {= "4.12.0"}
"ocaml" {= "4.12.1"}
"ocaml-compiler-libs" {= "v0.12.3"}
"ocaml-config" {= "2"}
"ocaml-migrate-parsetree" {= "1.8.0"}
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml.opam
Expand Up @@ -40,7 +40,7 @@ depends: [
"magic-mime"
"markup"
"markup-lwt"
"ocaml" {= "4.12.0"}
"ocaml" {(>= "4.12") & (< "4.13~")}
"ocamlfind" {build}
"ocp-indent-nlfork"
"ocp-ocamlres" {= "0.4"}
Expand Down
2 changes: 1 addition & 1 deletion learn-ocaml.opam.locked
Expand Up @@ -73,7 +73,7 @@ depends: [
"menhirSdk" {= "20210419"}
"mmap" {= "1.1.0"}
"num" {= "1.4"}
"ocaml" {= "4.12.0"}
"ocaml" {= "4.12.1"}
"ocaml-compiler-libs" {= "v0.12.3"}
"ocaml-config" {= "2"}
"ocaml-migrate-parsetree" {= "1.8.0"}
Expand Down
2 changes: 1 addition & 1 deletion scripts/static-build.sh
Expand Up @@ -10,7 +10,7 @@ cd $(dirname "$0")/..
set -o pipefail
git ls-files -z | xargs -0 tar c | \
docker run --rm -i \
ocamlpro/ocaml:4.12-2021-07-25 \
ocamlpro/ocaml:4.12 \
sh -uexc \
'tar x >&2 &&
sudo apk add openssl-libs-static bash >&2 &&
Expand Down

0 comments on commit d5ece9b

Please sign in to comment.