This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch add-ocaml-and-php in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 4de563e25527e84a5e0f3411f02a5f6e77f536e9 Author: Xuanwo <[email protected]> AuthorDate: Wed Aug 9 12:37:45 2023 +0800 ci: Add setup for php and ocaml Signed-off-by: Xuanwo <[email protected]> --- .devcontainer/post_create.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.devcontainer/post_create.sh b/.devcontainer/post_create.sh index e6e2856c7..4cc146b79 100644 --- a/.devcontainer/post_create.sh +++ b/.devcontainer/post_create.sh @@ -55,4 +55,12 @@ zigup master #TODO: replace to 0.11.0 (stable) # Setup for Haskell binding sudo apt install -y ghc cabal-install -cabal update \ No newline at end of file +cabal update + +# Setup for PHP binding +sudo apt install -y php + +# Setup for OCaml binding +sudo apt install -y opam +opam init --auto-setup --yes +opam install -y dune ounit2 ocamlformat
