Skip to content

Commit

Permalink
Use OCaml 4.14.1 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mooreryan committed Jan 19, 2024
1 parent ea2aebd commit 14d900e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- macos-11
- ubuntu-20.04
ocaml-compiler:
- 4.14.0
- 4.14.1

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -131,14 +131,14 @@ jobs:
opam exec -- just build_dev
opam exec -- just test_dev
opam exec -- just install_dev
if: matrix.ocaml-compiler == '4.14.0'
if: matrix.ocaml-compiler == '4.14.1'

# Send the coverage.
- name: Send coverage
run: |
opam install bisect_ppx
opam exec -- just send_coverage
if: matrix.ocaml-compiler == '4.14.0' && matrix.os == 'ubuntu-20.04'
if: matrix.ocaml-compiler == '4.14.1' && matrix.os == 'ubuntu-20.04'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -148,18 +148,18 @@ jobs:
opam exec -- just build_release
opam exec -- just test_release
opam exec -- just install_release
if: matrix.ocaml-compiler == '4.14.0'
if: matrix.ocaml-compiler == '4.14.1'

- name: Upload InteinFinder artifact
uses: actions/upload-artifact@v2
with:
name: ${{ env.PROGRAM_NAME }}-${{ matrix.os }}
path: _build/install/default/bin/${{ env.PROGRAM_NAME }}
if: matrix.ocaml-compiler == '4.14.0'
if: matrix.ocaml-compiler == '4.14.1'

- name: Upload RemoveInteins artifact
uses: actions/upload-artifact@v2
with:
name: RemoveInteins-${{ matrix.os }}
path: _build/install/default/bin/RemoveInteins
if: matrix.ocaml-compiler == '4.14.0'
if: matrix.ocaml-compiler == '4.14.1'

0 comments on commit 14d900e

Please sign in to comment.