Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI fixes #84

Merged
merged 2 commits into from
Dec 13, 2023
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/ocaml-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
id: dotenv
uses: falti/[email protected]

- name: Update package repos
run: sudo apt-get update -y

- name: Use ocaml
uses: avsm/setup-ocaml@v1
with:
Expand Down
1 change: 1 addition & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
base-unix
(fd-send-recv (>= 2.0.0))
(odoc :with-doc)
xapi-backtrace
(xapi-stdext-pervasives (= :version))
)
)
Expand Down
2 changes: 1 addition & 1 deletion lib/xapi-stdext-date/dune
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
(name test)
(package xapi-stdext-date)
(modules test)
(libraries alcotest xapi-stdext-date)
(libraries alcotest xapi-stdext-date ptime)
)
2 changes: 1 addition & 1 deletion lib/xapi-stdext-encodings/bench/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
(name bench_encodings)
(modes exe)
(optional)
(libraries bechamel xapi_stdext_encodings bechamel-notty notty.unix)
(libraries bechamel xapi_stdext_encodings bechamel-notty notty.unix fmt)
)
2 changes: 1 addition & 1 deletion lib/xapi-stdext-threads/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(public_name xapi-stdext-threads)
(name xapi_stdext_threads)
(libraries
threads
threads.posix
unix
xapi-stdext-pervasives)
)
1 change: 1 addition & 0 deletions lib/xapi-stdext-unix/dune
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
(libraries
fd-send-recv
unix
xapi-backtrace
xapi-stdext-pervasives)
(foreign_stubs
(language c)
Expand Down
1 change: 1 addition & 0 deletions xapi-stdext-unix.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ depends: [
"base-unix"
"fd-send-recv" {>= "2.0.0"}
"odoc" {with-doc}
"xapi-backtrace"
"xapi-stdext-pervasives" {= version}
]
build: [
Expand Down
Loading