Skip to content

Commit

Permalink
X
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtrKovalenko committed Aug 18, 2024
1 parent c8bc5da commit 8265015
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,18 @@ jobs:
with:
ocaml-compiler: "4.14.2"
opam-disable-sandboxing: true
dune-cache: true
dune-cache: false
# opam-repositories: |
# default: git+https://github.com/fdopen/opam-repository-mingw.git#opam2

# - run: |
# opam switch create 4.14.2-mingw32 arch-x86_32 system-mingw ocaml.4.14.2
- run: |
opam switch create 4.14.2-mingw64 arch-x86_64 system-mingw ocaml.4.14.2
- name: Install deps & build
run: opam install . --with-test
run: |
opam switch 4.14.2-mingw64
opam install . --with-test
opam exec -- dune build --verbose
- run: opam exec -- dune build --verbose

Expand Down
12 changes: 12 additions & 0 deletions .spr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
githubRepoOwner: dmtrKovalenko
githubRepoName: odiff
githubHost: github.com
githubRemote: origin/chore
githubBranch: esy-nightly
requireChecks: true
requireApproval: true
mergeMethod: rebase
mergeQueue: false
forceFetchTags: false
showPrTitlesInStack: false
branchPushIndividually: false
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
(synopsis "Pixel-by-pixel image difference algorithm")
(depends
dune
(ocaml (= 4.14.0))
(ocaml (= 4.14.2))
)
)

Expand All @@ -42,7 +42,7 @@
(depends
dune
odiff-core
(ocaml (= 4.14.0))
(ocaml (= 4.14.2))
(dune-configurator (>= 2.8))
)
)
3 changes: 2 additions & 1 deletion odiff-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ homepage: "https://github.com/dmtrKovalenko/odiff"
bug-reports: "https://github.com/dmtrKovalenko/odiff/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {= "4.14.0"}
"ocaml" {= "4.14.2"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"--verbose"
"-p"
name
"-j"
Expand Down
2 changes: 1 addition & 1 deletion odiff-io.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bug-reports: "https://github.com/dmtrKovalenko/odiff/issues"
depends: [
"dune" {>= "2.8"}
"odiff-core"
"ocaml" {= "4.14.0"}
"ocaml" {= "4.14.2"}
"dune-configurator" {>= "2.8"}
"odoc" {with-doc}
]
Expand Down

0 comments on commit 8265015

Please sign in to comment.