Skip to content

Commit

Permalink
Remove unecessary output in doc and fix deploy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Sep 14, 2024
1 parent 801e36e commit c60f6b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
Expand All @@ -37,10 +35,12 @@ jobs:
run: |
opam install -y . --deps-only --with-doc --with-test
opam install z3
opam exec -- dune build @install @doc
opam exec -- dune build @install
opam exec -- dune install
BISECT_FILE=`pwd`/bisect opam exec -- dune runtest --force --instrument-with bisect_ppx
opam exec -- bisect-ppx-report html -o _build/default/_doc/_html/coverage
opam exec -- bisect-ppx-report send-to Coveralls
opam exec -- dune build @doc
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

Expand Down
12 changes: 1 addition & 11 deletions doc/index.mld
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,7 @@ is outlined below:

{@ocaml[
# #use "topfind"
- : unit = ()
Findlib has been successfully loaded. Additional directives:
#require "package";; to load a package
#list;; to list the available packages
#camlp4o;; to load camlp4 (standard syntax)
#camlp4r;; to load camlp4 (revised syntax)
#predicates "p,q,...";; to set these predicates
Topfind.reset();; to force that packages will be reloaded
#thread;; to enable threads

- : unit = ()
...
# #require "smtml"
# #install_printer Smtml.Expr.pp
# module Z3 = Smtml.Solver.Batch (Smtml.Z3_mappings)
Expand Down

0 comments on commit c60f6b5

Please sign in to comment.