CI(chore): remove explicite pin and deps install

Pinning and installation of the dependency is already done by
setup-ocaml
This commit is contained in:
Fardale 2023-02-15 11:00:50 +01:00
parent def8f242fc
commit 8607de2749
3 changed files with 0 additions and 12 deletions

View file

@ -32,7 +32,5 @@ jobs:
ocaml-compiler: ${{ matrix.ocaml-compiler }} ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true dune-cache: true
- run: opam pin -n .
- run: opam depext -y containers containers-data containers-thread
- run: opam install containers containers-data containers-thread --deps-only - run: opam install containers containers-data containers-thread --deps-only
- run: opam exec -- dune build '@install' - run: opam exec -- dune build '@install'

View file

@ -18,12 +18,6 @@ jobs:
ocaml-compiler: '4.14.x' ocaml-compiler: '4.14.x'
dune-cache: false dune-cache: false
- name: Pin
run: opam pin -n .
- name: Depext
run: opam depext -yt containers containers-data containers-thread
- name: Deps - name: Deps
run: opam install -d . --deps-only run: opam install -d . --deps-only

View file

@ -31,10 +31,6 @@ jobs:
ocaml-compiler: ${{ matrix.ocaml-compiler }} ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true dune-cache: true
- run: opam pin -n .
- run: opam depext -yt containers containers-data containers-thread
- run: opam install -t containers containers-data containers-thread --deps-only - run: opam install -t containers containers-data containers-thread --deps-only
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'