From 5b9f5681fe2de646f04bf3ac3d10088efa15e6e0 Mon Sep 17 00:00:00 2001 From: Javier Chavarri Date: Tue, 24 Oct 2023 16:39:52 +0000 Subject: [PATCH] remove dune cache and other stuff from ci --- .github/workflows/ci.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f937233..5436e8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,27 +28,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Load opam cache when not Windows - if: runner.os != 'Windows' - id: opam-cache - uses: actions/cache/restore@v3 - with: - path: ~/.opam - key: opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }} - - - name: Load opam cache when Windows - if: runner.os == 'Windows' - id: opam-cache-windows - uses: actions/cache/restore@v3 - with: - path: _opam - key: opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }} - - name: Use OCaml ${{ matrix.ocaml-compiler }} uses: ocaml/setup-ocaml@v2 with: ocaml-compiler: ${{ matrix.ocaml-compiler }} - dune-cache: true + opam-depext: false - name: Use Node.js uses: actions/setup-node@v3