mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
try
This commit is contained in:
parent
d4ba366c20
commit
7356ddc80d
2 changed files with 11 additions and 7 deletions
3
.github/workflows/blank.yml
vendored
3
.github/workflows/blank.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue