-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix deprecation warning * bump dune lang * Bump ocamlformat version --------- Co-authored-by: Hugo Heuzard <[email protected]>
- Loading branch information
Showing
10 changed files
with
53 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
(lang dune 1.6) | ||
(using fmt 1.0) | ||
(lang dune 3.0) | ||
(name merge-fmt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
(executables | ||
(names merge_fmt) | ||
(public_names merge-fmt) | ||
(libraries base stdio unix cmdliner) | ||
) | ||
(names merge_fmt) | ||
(public_names merge-fmt) | ||
(libraries base stdio unix cmdliner)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
(library | ||
(name merge_fmt_test) | ||
(libraries base stdio unix core_unix core_unix.filename_unix) | ||
(inline_tests) | ||
(preprocessor_deps ../src/merge_fmt.exe) | ||
(preprocess (pps ppx_expect))) | ||
|
||
(name merge_fmt_test) | ||
(libraries base stdio unix core_unix core_unix.filename_unix) | ||
(inline_tests) | ||
(preprocessor_deps ../src/merge_fmt.exe) | ||
(preprocess | ||
(pps ppx_expect))) | ||
|
||
;; [rebase_a.ml] and [rebase_b.ml] should be the same expect that | ||
;; [rebase_b.ml] does rebase in an intermediate revision. | ||
|
||
(rule | ||
(targets rebase.diff.gen) | ||
(action (with-stdout-to %{targets} (bash "diff %{dep:rebase_a.ml} %{dep:rebase_b.ml} || true")))) | ||
(targets rebase.diff.gen) | ||
(action | ||
(with-stdout-to | ||
%{targets} | ||
(bash "diff %{dep:rebase_a.ml} %{dep:rebase_b.ml} || true")))) | ||
|
||
(alias | ||
(name runtest) | ||
(action (diff rebase.diff rebase.diff.gen))) | ||
(rule | ||
(alias runtest) | ||
(action | ||
(diff rebase.diff rebase.diff.gen))) |