-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uring.0.1: Fix license field syntax and accept failures on old distri…
…butions (default C compiler does not support stdatomic.h)
- Loading branch information
1 parent
8084bcb
commit d3ea851
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ description: | |
"Bindings to the Linux io_uring kernel IO interfaces. See https://github.com/ocaml-multicore/eio for a higher-level API using this." | ||
maintainer: ["[email protected]"] | ||
authors: ["Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard"] | ||
license: "(ISC AND MIT)" | ||
license: ["ISC" "MIT"] | ||
homepage: "https://github.com/ocaml-multicore/ocaml-uring" | ||
bug-reports: "https://github.com/ocaml-multicore/ocaml-uring/issues" | ||
depends: [ | ||
|
@@ -25,6 +25,10 @@ depends: [ | |
"alcotest" {>= "1.4.0" & with-test} | ||
"odoc" {with-doc} | ||
] | ||
x-ci-accept-failures: [ | ||
"centos-7" # default C compiler does not support stdatomic.h | ||
"oraclelinux-7" # default C compiler does not support stdatomic.h | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
|