From 0a30b4fe982bd16131c48b555a2072fbd8f2b277 Mon Sep 17 00:00:00 2001 From: Erik Martin-Dorel Date: Sat, 25 Sep 2021 17:41:23 +0200 Subject: [PATCH] fix(.ci-macosx.sh): Install openssl * href: https://formulae.brew.sh/formula/openssl@3#default * Note: the following two CI builds for macOS are slightly different, which allows one to have a better "test coverage": - .github/workflows/build-macos.yml : build : 'sh .ci-macosx.sh' => Use a brew distribution of opam - .github/workflows/static-builds.yml : static-bin-macos => Use opam-2.1.0-x86_64-macos --- .ci-macosx.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci-macosx.sh b/.ci-macosx.sh index 2f6a534c8..a27cf3415 100644 --- a/.ci-macosx.sh +++ b/.ci-macosx.sh @@ -10,9 +10,10 @@ brew update brew install pkg-config brew install opam brew install libev +brew install openssl opam init -y -a --bare -opam switch create . ocaml-base-compiler --deps-only --locked -y -j 2 -v +opam switch create . ocaml-base-compiler --deps-only --locked -y -j 2 # -v eval $(opam env) make make opaminstall