File tree 6 files changed +35
-5
lines changed
6 files changed +35
-5
lines changed Original file line number Diff line number Diff line change 44
44
( depends
45
45
( ocaml ( >= 4 .08) )
46
46
( pbrt ( = :version ) )
47
+ ( ocaml-protoc ( and ( = :version ) :with -test) )
47
48
( pbrt_yojson ( = :version ) ) )
48
49
( tags ( protobuf encode decode services rpc) ) )
49
50
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ depends: [
14
14
"odoc" {with-doc}
15
15
"ocaml" {>= "4.08"}
16
16
]
17
+ dev-repo: "git+https://github.com/mransan/ocaml-protoc.git"
18
+ available: arch != "arm32" & arch != "x86_32" & arch != "ppc32" & arch != "ppc64"
17
19
build: [
18
20
["dune" "subst"] {pinned}
19
21
[
@@ -24,9 +26,7 @@ build: [
24
26
"-j"
25
27
jobs
26
28
"@install"
27
- "@runtest" {with-test}
29
+ "@src/tests/unit-tests/pbrt/ runtest" {with-test} # custom path
28
30
"@doc" {with-doc}
29
31
]
30
32
]
31
- dev-repo: "git+https://github.com/mransan/ocaml-protoc.git"
32
- available: arch != "arm32" & arch != "x86_32" & arch != "ppc32" & arch != "ppc64"
Original file line number Diff line number Diff line change 1
1
available: arch != "arm32" & arch != "x86_32" & arch != "ppc32" & arch != "ppc64"
2
+ build: [
3
+ ["dune" "subst"] {pinned}
4
+ [
5
+ "dune"
6
+ "build"
7
+ "-p"
8
+ name
9
+ "-j"
10
+ jobs
11
+ "@install"
12
+ "@src/tests/unit-tests/pbrt/runtest" {with-test} # custom path
13
+ "@doc" {with-doc}
14
+ ]
15
+ ]
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ depends: [
12
12
"dune" {>= "2.0"}
13
13
"ocaml" {>= "4.08"}
14
14
"pbrt" {= version}
15
+ "ocaml-protoc" {= version & with-test}
15
16
"pbrt_yojson" {= version}
16
17
]
17
18
build: [
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ depends: [
16
16
"yojson" {>= "1.6"}
17
17
"base64" {>= "3.0"}
18
18
]
19
+ dev-repo: "git+https://github.com/mransan/ocaml-protoc.git"
19
20
build: [
20
21
["dune" "subst"] {pinned}
21
22
[
@@ -26,8 +27,7 @@ build: [
26
27
"-j"
27
28
jobs
28
29
"@install"
29
- "@runtest" {with-test}
30
+ "@src/tests/yojson/ runtest" {with-test}
30
31
"@doc" {with-doc}
31
32
]
32
33
]
33
- dev-repo: "git+https://github.com/mransan/ocaml-protoc.git"
Original file line number Diff line number Diff line change
1
+ build: [
2
+ ["dune" "subst"] {pinned}
3
+ [
4
+ "dune"
5
+ "build"
6
+ "-p"
7
+ name
8
+ "-j"
9
+ jobs
10
+ "@install"
11
+ "@src/tests/yojson/runtest" {with-test}
12
+ "@doc" {with-doc}
13
+ ]
14
+ ]
You can’t perform that action at this time.
0 commit comments