This commit is contained in:
danyaberezun 2025-02-28 18:19:31 +01:00
parent d4ba366c20
commit 7356ddc80d
2 changed files with 11 additions and 7 deletions

View file

@ -58,9 +58,8 @@ jobs:
- run: opam exec -- dune b
- run: opam exec -- dune install --profile=release
- run: opam exec -- dune test stdlib/regression
- run: opam exec -- dune test regression
- run: opam exec -- dune test regression_long
- run: opam exec -- make regression-all
# works
# - run: rm -fr runtime32

View file

@ -1,7 +1,8 @@
(rule
(targets Expressions.x32.exe)
(enabled_if (= %{ocaml-config:os_type} "linux"))
; (enabled_if (= %{ocaml-config:os_type} "linux"))
(enabled_if (= %{system} "linux"))
(deps (:lama Expressions.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
@ -43,7 +44,8 @@
(rule
(targets Functions.x32.exe)
(enabled_if (= %{ocaml-config:os_type} "linux"))
; (enabled_if (= %{ocaml-config:os_type} "linux"))
(enabled_if (= %{system} "linux"))
(deps (:lama Functions.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
@ -85,7 +87,8 @@
(rule
(targets Hello.x32.exe)
(enabled_if (= %{ocaml-config:os_type} "linux"))
; (enabled_if (= %{ocaml-config:os_type} "linux"))
(enabled_if (= %{system} "linux"))
(deps (:lama Hello.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
@ -127,7 +130,8 @@
(rule
(targets PatternMatching.x32.exe)
(enabled_if (= %{ocaml-config:os_type} "linux"))
; (enabled_if (= %{ocaml-config:os_type} "linux"))
(enabled_if (= %{system} "linux"))
(deps (:lama PatternMatching.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
@ -169,7 +173,8 @@
(rule
(targets Values.x32.exe)
(enabled_if (= %{ocaml-config:os_type} "linux"))
; (enabled_if (= %{ocaml-config:os_type} "linux"))
(enabled_if (= %{system} "linux"))
(deps (:lama Values.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))