Skip to content

Commit

Permalink
remove dune cache and other stuff from ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri committed Oct 24, 2023
1 parent 89fa181 commit 5b9f568
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b9f568

Please sign in to comment.