Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
[submodule "ocaml-ci"]
path = ocaml-ci
url = https://github.com/ocaml-ci/ocaml-ci.git
[submodule "lwd"]
path = lwd
url = https://github.com/let-def/lwd.git
branch = master
2 changes: 1 addition & 1 deletion .ocamlformat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 0.15.0
version = 0.24.1
profile = conventional
break-infix = fit-or-vertical
50 changes: 39 additions & 11 deletions citty.opam
Original file line number Diff line number Diff line change
@@ -1,16 +1,44 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "CI in TTY"
maintainer: ["Frédéric Bour"]
authors: ["Frédéric Bour"]
license: "MIT"
homepage: "https://github.com/ocurrent/citty"
bug-reports: "https://github.com/ocurrent/citty/issues"
depends: [
"dune" {>= "3.6"}
"current_rpc"
"capnp"
"capnp-rpc-unix"
"lwt" {>= "5.6.1"}
"notty" {>= "0.2.3"}
"lwd" {>= "0.3"}
"nottui" {>= "0.3"}
"nottui-lwt" {>= "0.3"}
"ocaml-ci-api"
"fpath"
"fmt"
"logs"
"cmdliner" {>= "1.1.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocurrent/citty.git"
pin-depends: [
[ "ocaml-ci-api.dev" "git+https://github.com/ocurrent/ocaml-ci.git#9b9a3d77eb2fd51017e5934b533a6d8fb190323b" ] # master
[ "solver-service-api.dev" "git+https://github.com/ocurrent/solver-service.git#2e0695f844c45048a6e40e2d45a2aaff46c9c163" ] # solver-ci
]
authors: ["Frédéric Bour"]
maintainer: "Frédéric Bour"
bug-reports: "https://github.com/ocaml-ci/citty/issues"
homepage: "https://github.com/ocaml-ci/citty"
dev-repo: "git+https://github.com/ocaml-ci/citty.git"
synopsis: "CI in TTY"
depends: ["current_rpc" "capnp" "capnp-rpc-unix" "lwt" "notty" "fpath" "fmt"]
4 changes: 4 additions & 0 deletions citty.opam.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pin-depends: [
[ "ocaml-ci-api.dev" "git+https://github.com/ocurrent/ocaml-ci.git#9b9a3d77eb2fd51017e5934b533a6d8fb190323b" ] # master
[ "solver-service-api.dev" "git+https://github.com/ocurrent/solver-service.git#2e0695f844c45048a6e40e2d45a2aaff46c9c163" ] # solver-ci
]
2 changes: 1 addition & 1 deletion dune
Original file line number Diff line number Diff line change
@@ -1 +1 @@
(vendored_dirs lwd ocaml-ci)
(vendored_dirs lwd)
22 changes: 18 additions & 4 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
(lang dune 2.0)

(lang dune 3.6)
(name citty)

(generate_opam_files true)
(source (github ocaml-ci/citty))

(source (github ocurrent/citty))
(authors "Frédéric Bour")
(maintainers "Frédéric Bour")
(license "MIT")

(package
(name citty)
(synopsis "CI in TTY")
(depends current_rpc capnp capnp-rpc-unix lwt notty fpath fmt))
(depends
current_rpc
capnp
capnp-rpc-unix
(lwt (>= 5.6.1))
(notty (>= 0.2.3))
(lwd (>= 0.3))
(nottui (>= 0.3))
(nottui-lwt (>= 0.3))
ocaml-ci-api
fpath
fmt
logs
(cmdliner (>= 1.1.0))))
2 changes: 1 addition & 1 deletion lwd
Submodule lwd updated 79 files
+39 −0 .github/workflows/main.yml
+37 −0 CHANGES
+16 −11 Makefile
+222 −2 README.md
+19 −0 TODO.md
+32 −0 brr-lwd.opam
+32 −14 dune-project
+27 −35 examples/cbor/cbor_explorer.ml
+1 −4 examples/cbor/cbor_of_fs.ml
+3 −2 examples/cbor/dune
+14 −4 examples/dune
+8 −0 examples/focustest-brr/Makefile
+21 −0 examples/focustest-brr/dune
+13 −0 examples/focustest-brr/index.html
+67 −0 examples/focustest-brr/main.ml
+20 −0 examples/minesweeper-tyxml/LICENSE
+4 −0 examples/minesweeper-tyxml/Makefile
+1 −0 examples/minesweeper-tyxml/README
+26 −0 examples/minesweeper-tyxml/dune
+13 −0 examples/minesweeper-tyxml/index.html
+81 −0 examples/minesweeper-tyxml/main.ml
+266 −0 examples/minesweeper-tyxml/minesweeper.ml
+ examples/minesweeper-tyxml/sprites/1.png
+ examples/minesweeper-tyxml/sprites/2.png
+ examples/minesweeper-tyxml/sprites/3.png
+ examples/minesweeper-tyxml/sprites/4.png
+ examples/minesweeper-tyxml/sprites/5.png
+ examples/minesweeper-tyxml/sprites/6.png
+ examples/minesweeper-tyxml/sprites/7.png
+ examples/minesweeper-tyxml/sprites/8.png
+ examples/minesweeper-tyxml/sprites/bomb.png
+ examples/minesweeper-tyxml/sprites/empty.png
+ examples/minesweeper-tyxml/sprites/flag.png
+ examples/minesweeper-tyxml/sprites/normal.png
+301 −0 examples/minesweeper-tyxml/sprites/scalable.svg
+20 −6 examples/minimal.ml
+35 −36 examples/misc.ml
+77 −0 examples/pretty.ml
+14 −13 examples/reranger.ml
+1 −1 examples/stress.ml
+4 −0 lib/brr-lwd/dune
+337 −0 lib/brr-lwd/elwd.ml
+429 −0 lib/brr-lwd/elwd.mli
+21 −5 lib/lwd/dune
+445 −205 lib/lwd/lwd.ml
+121 −18 lib/lwd/lwd.mli
+8 −0 lib/lwd/lwd_infix.ml
+16 −0 lib/lwd/lwd_infix.mli
+908 −0 lib/lwd/lwd_seq.ml
+209 −0 lib/lwd/lwd_seq.mli
+91 −39 lib/lwd/lwd_table.ml
+79 −5 lib/lwd/lwd_table.mli
+47 −20 lib/lwd/lwd_utils.ml
+56 −2 lib/lwd/lwd_utils.mli
+36 −0 lib/lwd/pp.ml
+18 −0 lib/lwd/select_version.ml
+1 −1 lib/nottui-lwt/dune
+2 −1 lib/nottui-lwt/nottui_lwt.ml
+13 −0 lib/nottui-lwt/nottui_lwt.mli
+4 −0 lib/nottui-pretty/dune
+385 −0 lib/nottui-pretty/nottui_pretty.ml
+57 −0 lib/nottui-pretty/nottui_pretty.mli
+0 −4 lib/nottui-widgets/dune
+0 −345 lib/nottui-widgets/nottui_widgets.ml
+82 −0 lib/nottui/README.md
+4 −2 lib/nottui/dune
+317 −236 lib/nottui/nottui.ml
+274 −23 lib/nottui/nottui.mli
+825 −0 lib/nottui/nottui_widgets.ml
+104 −0 lib/nottui/nottui_widgets.mli
+2 −0 lib/tyxml-lwd/Makefile
+8 −0 lib/tyxml-lwd/dune
+1,908 −0 lib/tyxml-lwd/tyxml_lwd.ml
+834 −0 lib/tyxml-lwd/tyxml_lwd.mli
+10 −3 lwd.opam
+9 −3 nottui-lwt.opam
+9 −4 nottui-pretty.opam
+11 −4 nottui.opam
+32 −0 tyxml-lwd.opam
1 change: 0 additions & 1 deletion ocaml-ci
Submodule ocaml-ci deleted from f44ec0
16 changes: 14 additions & 2 deletions src/dune
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
(executable
(name main)
(public_name citty)
(modes byte exe)
(libraries ocaml-ci-api current_rpc capnp-rpc-unix lwd nottui nottui-lwt
nottui-widgets))
(libraries
ocaml-ci-api
current_rpc
capnp-rpc-unix
lwd
nottui
nottui-lwt
fmt
fmt.cli
fmt.tty
logs
logs.fmt
logs.cli))
Loading