Skip to content

Commit 8f6c975

Browse files
committed
Fix build
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 7950e0a commit 8f6c975

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727

2828
steps:
29+
- name: Set git to use LF
30+
if: matrix.os == 'windows-latest'
31+
run: |
32+
git config --global core.autocrlf false
33+
git config --global core.eol lf
34+
git config --global core.ignorecase false
35+
2936
- name: Checkout tree
3037
uses: actions/checkout@v4
3138

@@ -37,6 +44,6 @@ jobs:
3744

3845
- run: opam install . --deps-only
3946

40-
- run: opam exec -- ./configure
47+
- run: opam exec -- bash ./configure
4148

4249
- run: opam exec -- make all

ocsigenserver.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ depends: [
5757
"re" {>= "1.11.0"}
5858
"cryptokit"
5959
"ipaddr" {>= "2.1"}
60-
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0.0~"}
61-
"conduit-lwt-unix" {>= "2.0.0"}
60+
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0"}
61+
"conduit-lwt-unix" {>= "2.0.0" & < "7.0"}
6262
"xml-light"
6363
"camlzip"
6464
]

0 commit comments

Comments
 (0)