Skip to content

Commit

Permalink
install pcre on ci runners
Browse files Browse the repository at this point in the history
  • Loading branch information
leque committed Dec 29, 2021
1 parent 8a1b1fb commit 1919b0f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ jobs:
fi
echo "::set-output name=opam-repo-default::$(echo "$DEFAULT_OPAM_REPO")"
- name: Install tools
run: |
case "${{ matrix.os }}" in
(ubuntu-*)
sudo apt-get update
sudo apt-get install libpcre3-dev
;;
(macos-*)
brew update
brew install pcre
;;
esac
- name: Setup OCaml ${{ matrix.ocaml-version }} and pin satysfi
uses: ocaml/setup-ocaml@v2
with:
Expand Down

0 comments on commit 1919b0f

Please sign in to comment.