Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
caisar
Commits
2ec7bb04
Commit
2ec7bb04
authored
2 years ago
by
Julien Girard-Satabin
Browse files
Options
Downloads
Patches
Plain Diff
Fixed dependencies for CI.
parent
d894139c
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+0
-1
0 additions, 1 deletion
.gitlab-ci.yml
caisar.opam
+6
-5
6 additions, 5 deletions
caisar.opam
dune-project
+7
-7
7 additions, 7 deletions
dune-project
nnet.opam
+5
-4
5 additions, 4 deletions
nnet.opam
onnx.opam
+5
-4
5 additions, 4 deletions
onnx.opam
with
23 additions
and
21 deletions
.gitlab-ci.yml
+
0
−
1
View file @
2ec7bb04
...
@@ -16,7 +16,6 @@ tests:
...
@@ -16,7 +16,6 @@ tests:
-
opam repository add remote https://opam.ocaml.org
-
opam repository add remote https://opam.ocaml.org
-
opam depext --yes ocplib-endian base fmt alt-ergo.2.4.0
-
opam depext --yes ocplib-endian base fmt alt-ergo.2.4.0
-
opam install . --deps-only --with-test --yes
-
opam install . --deps-only --with-test --yes
-
opam install alt-ergo.2.4.0 --yes
-
make
-
make
-
make test
-
make test
tags
:
tags
:
...
...
This diff is collapsed.
Click to expand it.
caisar.opam
+
6
−
5
View file @
2ec7bb04
...
@@ -4,15 +4,15 @@ version: "0.1"
...
@@ -4,15 +4,15 @@ version: "0.1"
synopsis: "Framework for neural network verification"
synopsis: "Framework for neural network verification"
depends: [
depends: [
"ocaml" {>= "4.13.0"}
"ocaml" {>= "4.13.0"}
"dune-site" {
>
= "2.9.0"}
"dune-site" {= "2.9.0"}
"piqi" {>= "0.7.6"}
"piqi" {>= "0.7.6"}
"piqilib" {>= "0.6.14"}
"piqilib" {>= "0.6.14"}
"zarith" {>= "1.7"}
"zarith" {>= "1.7"}
"ocplib-endian" {>= "1.0"}
"ocplib-endian" {>= "1.0"}
"dune" {>= "2.9" & >= "2.7.1"}
"dune" {>= "2.9" & >= "2.7.1"
& <= "2.9.0"
}
"base" {>= "v0.14.0"}
"base" {>= "v0.14.0"}
"stdio" {>= "v0.14.0"}
"stdio" {>= "v0.14.0"}
"cmdliner" {
>
= "1.0.4"}
"cmdliner" {= "1.0.4"}
"fmt" {>= "0.8.9"}
"fmt" {>= "0.8.9"}
"logs" {>= "0.7.0"}
"logs" {>= "0.7.0"}
"ppx_deriving" {>= "5.1"}
"ppx_deriving" {>= "5.1"}
...
@@ -26,7 +26,7 @@ depends: [
...
@@ -26,7 +26,7 @@ depends: [
"odoc" {with-doc}
"odoc" {with-doc}
]
]
build: [
build: [
["dune" "subst"] {dev}
["dune" "subst"
"--root" "."
] {dev}
[
[
"dune"
"dune"
"build"
"build"
...
@@ -34,7 +34,8 @@ build: [
...
@@ -34,7 +34,8 @@ build: [
name
name
"-j"
"-j"
jobs
jobs
"--promote-install-files=false"
"--promote-install-files"
"false"
"@install"
"@install"
"@runtest" {with-test}
"@runtest" {with-test}
"@doc" {with-doc}
"@doc" {with-doc}
...
...
This diff is collapsed.
Click to expand it.
dune-project
+
7
−
7
View file @
2ec7bb04
...
@@ -14,15 +14,15 @@
...
@@ -14,15 +14,15 @@
(synopsis "Framework for neural network verification")
(synopsis "Framework for neural network verification")
(depends
(depends
(ocaml (>= 4.13.0))
(ocaml (>= 4.13.0))
(dune-site (
>
= 2.9.0))
(dune-site (= 2.9.0))
(piqi (>= 0.7.6))
(piqi (>= 0.7.6))
(piqilib (>= 0.6.14))
(piqilib (>= 0.6.14))
(zarith (>= 1.7))
(zarith (>= 1.7))
(ocplib-endian (>= 1.0))
(ocplib-endian (>= 1.0))
(dune (>= 2.7.1))
(dune
(and
(>= 2.7.1)
(<= 2.9.0))
)
(base (>= v0.14.0))
(base (>= v0.14.0))
(stdio (>= v0.14.0))
(stdio (>= v0.14.0))
(cmdliner (
>
= 1.0.4))
(cmdliner (= 1.0.4))
(fmt (>= 0.8.9))
(fmt (>= 0.8.9))
(logs (>= 0.7.0))
(logs (>= 0.7.0))
(ppx_deriving (>= 5.1))
(ppx_deriving (>= 5.1))
...
@@ -44,8 +44,8 @@
...
@@ -44,8 +44,8 @@
(name nnet)
(name nnet)
(synopsis "NNet parser")
(synopsis "NNet parser")
(depends
(depends
(ocaml (>= 4.1
0
))
(ocaml (>= 4.1
3
))
(dune (
>= 2.9.1
))
(dune (
and (>= 2.7.1) (<= 2.9.0)
))
(base (>= v0.14.0))
(base (>= v0.14.0))
)
)
)
)
...
@@ -54,8 +54,8 @@
...
@@ -54,8 +54,8 @@
(name onnx)
(name onnx)
(synopsis "ONNX parser")
(synopsis "ONNX parser")
(depends
(depends
(ocaml (>= 4.1
0
))
(ocaml (>= 4.1
3
))
(dune (
>= 2.9.1
))
(dune (
and (>= 2.7.1) (<= 2.9.0)
))
(base (>= v0.14.0))
(base (>= v0.14.0))
(ocaml-protoc-plugin (= 4.2.0))
(ocaml-protoc-plugin (= 4.2.0))
)
)
...
...
This diff is collapsed.
Click to expand it.
nnet.opam
+
5
−
4
View file @
2ec7bb04
...
@@ -3,13 +3,13 @@ opam-version: "2.0"
...
@@ -3,13 +3,13 @@ opam-version: "2.0"
version: "0.1"
version: "0.1"
synopsis: "NNet parser"
synopsis: "NNet parser"
depends: [
depends: [
"ocaml" {>= "4.1
0
"}
"ocaml" {>= "4.1
3
"}
"dune" {>= "2.9" & >= "2.9.
1
"}
"dune" {>= "2.9" & >=
"2.7.1" & <=
"2.9.
0
"}
"base" {>= "v0.14.0"}
"base" {>= "v0.14.0"}
"odoc" {with-doc}
"odoc" {with-doc}
]
]
build: [
build: [
["dune" "subst"] {dev}
["dune" "subst"
"--root" "."
] {dev}
[
[
"dune"
"dune"
"build"
"build"
...
@@ -17,7 +17,8 @@ build: [
...
@@ -17,7 +17,8 @@ build: [
name
name
"-j"
"-j"
jobs
jobs
"--promote-install-files=false"
"--promote-install-files"
"false"
"@install"
"@install"
"@runtest" {with-test}
"@runtest" {with-test}
"@doc" {with-doc}
"@doc" {with-doc}
...
...
This diff is collapsed.
Click to expand it.
onnx.opam
+
5
−
4
View file @
2ec7bb04
...
@@ -3,14 +3,14 @@ opam-version: "2.0"
...
@@ -3,14 +3,14 @@ opam-version: "2.0"
version: "0.1"
version: "0.1"
synopsis: "ONNX parser"
synopsis: "ONNX parser"
depends: [
depends: [
"ocaml" {>= "4.1
0
"}
"ocaml" {>= "4.1
3
"}
"dune" {>= "2.9" & >= "2.9.
1
"}
"dune" {>= "2.9" & >=
"2.7.1" & <=
"2.9.
0
"}
"base" {>= "v0.14.0"}
"base" {>= "v0.14.0"}
"ocaml-protoc-plugin" {= "4.2.0"}
"ocaml-protoc-plugin" {= "4.2.0"}
"odoc" {with-doc}
"odoc" {with-doc}
]
]
build: [
build: [
["dune" "subst"] {dev}
["dune" "subst"
"--root" "."
] {dev}
[
[
"dune"
"dune"
"build"
"build"
...
@@ -18,7 +18,8 @@ build: [
...
@@ -18,7 +18,8 @@ build: [
name
name
"-j"
"-j"
jobs
jobs
"--promote-install-files=false"
"--promote-install-files"
"false"
"@install"
"@install"
"@runtest" {with-test}
"@runtest" {with-test}
"@doc" {with-doc}
"@doc" {with-doc}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment