Skip to content

Commit bad4a4a

Browse files
committed
Fix packages information
1 parent 3b61196 commit bad4a4a

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

codept-lib.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ build: [
3333
]
3434
]
3535
dev-repo: "git+https://github.com/Octachron/codept.git"
36-
x-maintenance-intent: "latest"
36+
x-maintenance-intent: "(latest)"

codept-lib.opam.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
x-maintenance-intent: "latest"
1+
x-maintenance-intent: "(latest)"

codept.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ build: [
3838
]
3939
]
4040
dev-repo: "git+https://github.com/Octachron/codept.git"
41-
x-maintenance-intent: "latest"
41+
x-maintenance-intent: "(latest)"

codept.opam.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
x-maintenance-intent: "latest"
1+
x-maintenance-intent: "(latest)"

tests/dune

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,31 @@
1818
(libraries unix codept_lib)
1919
)
2020

21-
(test (name bundle_sync) (modules Bundle_sync) (libraries bundled bundle_refs codept_lib))
21+
(test
22+
(package codept-lib)
23+
(name bundle_sync)
24+
(modules Bundle_sync)
25+
(libraries bundled bundle_refs codept_lib)
26+
)
2227

2328
(rule
2429
(alias runtest)
30+
(package codept-lib)
2531
(deps run.exe)
2632
(action (run %{exe:run.exe} ../../.. ))
2733
)
2834

2935
(rule
3036
(alias runtest)
37+
(package codept-lib)
3138
(deps run.exe)
3239
(action (run %{exe:serialization.exe}))
3340
)
3441

3542

3643
(rule
3744
(alias runtest)
45+
(package codept)
3846
(deps ../full/codept.exe step_by_step.exe)
3947
(action (run %{exe:integrated.exe}))
4048
)

0 commit comments

Comments
 (0)