Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default tricera path to assume that tri is in $PATH #4

Merged
merged 4 commits into from
May 13, 2024
Merged
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
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,16 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- run: |
sudo apt-get update
sudo apt-get install -q -y graphviz libgtk-3-dev libgtksourceview-3.0-dev
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune runtest
- run: |
opam install . --deps-only --with-test
opam exec -- dune build
opam exec -- dune runtest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This program is licensed under the GPL2 license, see license headers in source c
and the full license in the LICENSE file.

ACSL Contract inference for helper functions.
Developed for Frama-C v23.1 but also seems to work for v24.
Developed for Frama-C v23.1 but also seems to work for Frama-C versions <= 28.1.
Please note that the plugin is experimental and still under development so that no results are guaranteed.


Expand Down
2 changes: 1 addition & 1 deletion src/options_saida.ml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module Output_file = Self.String
module Tricera_path = Self.String
(struct
let option_name = "-saida-tricera-path"
let default = "~/Documents/tricera/tri"
let default = "tri"
let arg_name = "output_file"
let help = "Sets the path to the TriCera executable"
end)
Expand Down