Skip to content

Commit 626d7eb

Browse files
authored
[CI] Update images to latest (#10)
* Update setup-ocaml to v3 * Add uninstall & clean step before rebuilding step
1 parent c069df8 commit 626d7eb

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/default.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os:
18-
- ubuntu-22.04
19-
- macos-14
18+
- ubuntu-latest
19+
- macos-latest
2020
ocaml-compiler:
2121
- 5.1.1
2222
- 5.2.0
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v4
3030

3131
- name: Use OCaml ${{ matrix.ocaml-compiler }}
32-
uses: ocaml/setup-ocaml@v2
32+
uses: ocaml/setup-ocaml@v3
3333
with:
3434
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3535
opam-depext: false
@@ -50,6 +50,12 @@ jobs:
5050
opam exec -- dune build @runtest
5151
shell: bash
5252

53+
- name: Clean & uninstall
54+
run: |
55+
opam exec -- dune uninstall
56+
opam exec -- dune clean
57+
shell: bash
58+
5359
- name: Rebuild library with UNIQUE_FIBERS
5460
run: |
5561
opam exec -- dune build

0 commit comments

Comments
 (0)