Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 19 additions & 21 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- macos-11
# Build binaries on older systems to require lower versions of libc and
# other system libraries.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can't do this in the binary-building runs -- see the comment that this commit is proposing to remove!

I'm going to cherry-pick parts of this PR (with credit) into a new history, and merge that. Thank you!

- ubuntu-latest
- macos-latest

runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: npm install esy
- run: echo PATH=$(pwd)/node_modules/.bin:$PATH >> $GITHUB_ENV
- run: make -C test/js full-test
Expand All @@ -32,31 +30,31 @@ jobs:
os:
- ubuntu-latest
ocaml:
- 5.0.0
- 4.14.1
- 4.13.1
- 4.12.1
- 4.11.2
- 4.10.2
- 4.09.1
- 4.08.1
- 4.07.1
- 4.06.1
- 4.05.0
- 4.04.2
- "5.0"
- "4.14"
- "4.13"
- "4.12"
- "4.11"
- "4.10"
- "4.09"
- "4.08"
- "4.07"
- "4.06"
- "4.05"
- "4.04"
include:
- os: macos-latest
ocaml: 4.12.1
ocaml: "4.12"
# ocamlformat 0.16.0, used in testing, doesn't support OCaml 4.13, and
# we are using a Linux binary of it. So, hold the Mac build back to
# 4.12 for now, and install ocamlformat from opam on Mac.
- os: windows-latest
ocaml: 4.12.1
ocaml: "4.13"

runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: avsm/setup-ocaml@v2
- uses: actions/checkout@v4
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{matrix.ocaml}}

Expand Down
2 changes: 1 addition & 1 deletion bisect_ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ depends: [
"cmdliner" {>= "1.0.0"}
"dune" {>= "2.7.0"}
"ocaml" {>= "4.03.0"}
"ppxlib" {>= "0.28.0"}
"ppxlib" {>= "0.28.0" & < "0.36.0"}

"dune" {with-test & >= "3.0.0"}
"ocamlformat" {with-test & = "0.16.0"}
Expand Down
Loading