2022-07-29 17:39:33 +03:00
|
|
|
(dirs runtimes compiler french_law build_system examples)
|
2022-05-25 15:36:51 +03:00
|
|
|
|
2022-07-29 17:39:33 +03:00
|
|
|
(data_only_dirs tests syntax_highlighting)
|
2022-05-25 15:36:51 +03:00
|
|
|
|
2022-08-01 20:29:34 +03:00
|
|
|
(copy_files compiler/surface/grammar.html)
|
|
|
|
|
2023-02-28 19:26:49 +03:00
|
|
|
; Override dune default warnings with sane settings
|
|
|
|
|
|
|
|
(env
|
|
|
|
; don't stop building because of warnings
|
|
|
|
(dev
|
|
|
|
(flags
|
|
|
|
(:standard -warn-error -a)))
|
|
|
|
; for CI runs: must fail on warnings
|
|
|
|
(check
|
|
|
|
(flags
|
|
|
|
(:standard
|
|
|
|
-w
|
|
|
|
+a-4-29-40-41-42-44-45-48-58-59-60-63-64-65-66-67-68-69-70
|
|
|
|
-warn-error
|
|
|
|
+a)))
|
|
|
|
; let us see the warnings even in release mode, but non-fatal
|
|
|
|
(release
|
|
|
|
(flags
|
|
|
|
(:standard
|
|
|
|
-w
|
|
|
|
+a-4-29-40-41-42-44-45-48-58-59-60-63-64-65-66-67-68-69-70
|
|
|
|
-warn-error
|
|
|
|
-a))))
|
|
|
|
|
2022-08-01 20:29:34 +03:00
|
|
|
(rule
|
|
|
|
(action
|
|
|
|
(with-stdout-to
|
|
|
|
catala.html
|
|
|
|
(pipe-stdout
|
|
|
|
(run catala --help=groff)
|
|
|
|
(run groff -P -l -P -r -mandoc -Thtml)))))
|
|
|
|
|
2022-12-22 22:42:56 +03:00
|
|
|
(rule
|
|
|
|
(action
|
|
|
|
(with-stdout-to
|
|
|
|
clerk.html
|
|
|
|
(pipe-stdout
|
|
|
|
(run clerk --help=groff)
|
|
|
|
(run groff -P -l -P -r -mandoc -Thtml)))))
|
|
|
|
|
|
|
|
(rule
|
|
|
|
(action
|
|
|
|
(with-stdout-to
|
|
|
|
catala_legifrance.html
|
|
|
|
(pipe-stdout
|
|
|
|
(run catala_legifrance --help=groff)
|
|
|
|
(run groff -P -l -P -r -mandoc -Thtml)))))
|
|
|
|
|
2022-05-25 15:36:51 +03:00
|
|
|
(alias
|
|
|
|
(name exec)
|
|
|
|
(deps compiler/catala.exe build_system/clerk.exe))
|
|
|
|
|
|
|
|
(rule
|
|
|
|
(alias runtest)
|
2022-08-09 13:05:50 +03:00
|
|
|
(package clerk)
|
2022-05-25 15:36:51 +03:00
|
|
|
(deps
|
|
|
|
(source_tree tests))
|
|
|
|
(action
|
|
|
|
(run clerk --exe %{bin:catala} test tests)))
|
|
|
|
|
|
|
|
(rule
|
|
|
|
(alias runtest)
|
2022-08-09 13:05:50 +03:00
|
|
|
(package clerk)
|
2022-05-25 15:36:51 +03:00
|
|
|
(deps
|
|
|
|
(source_tree examples))
|
|
|
|
(action
|
|
|
|
(run clerk --exe %{bin:catala} test examples)))
|