Skip to content

Commit

Permalink
Fix build (#249)
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto authored Dec 23, 2024
1 parent 7950e0a commit 4085343
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Set git to use LF
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --global core.ignorecase false
- name: Checkout tree
uses: actions/checkout@v4

Expand All @@ -37,6 +44,6 @@ jobs:

- run: opam install . --deps-only

- run: opam exec -- ./configure
- run: opam exec -- bash ./configure

- run: opam exec -- make all
4 changes: 2 additions & 2 deletions ocsigenserver.opam
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ depends: [
"re" {>= "1.11.0"}
"cryptokit"
"ipaddr" {>= "2.1"}
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0.0~"}
"conduit-lwt-unix" {>= "2.0.0"}
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0"}
"conduit-lwt-unix" {>= "2.0.0" & < "7.0"}
"xml-light"
"camlzip"
]
Expand Down

0 comments on commit 4085343

Please sign in to comment.