Skip to content
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
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
Loading