diff options
author | Son HO | 2024-03-08 16:51:40 +0100 |
---|---|---|
committer | GitHub | 2024-03-08 16:51:40 +0100 |
commit | 169d011cbfa83d853d0148bbf6b946e6ccbe4c4c (patch) | |
tree | ed8953634d14313d5b7d6ad204343d64eb990baf /flake.nix | |
parent | b604bb9935007a1f0e9c7f556f8196f0e14c85ce (diff) | |
parent | 873deb005b394aca3090497e6c21ab9f8c2676be (diff) |
Merge pull request #83 from AeneasVerif/son/backs
Remove the option to split the forward/backward functions
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 19 |
1 files changed, 5 insertions, 14 deletions
@@ -114,18 +114,6 @@ # The tests don't generate anything - TODO: actually they do installPhase = "touch $out"; }; - # Replay the F* proofs for the cases where we split the fwd/back functions. - aeneas-verify-fstar-split = pkgs.stdenv.mkDerivation { - name = "aeneas_verify_fstar_split"; - src = ./tests/fstar-split; - FSTAR_EXE = "${hacl-nix.packages.${system}.fstar}/bin/fstar.exe"; - buildPhase= '' - make prepare-projects - make verify -j $NIX_BUILD_CORES - ''; - # The tests don't generate anything - TODO: actually they do - installPhase = "touch $out"; - }; # Replay the Coq proofs. aeneas-verify-coq = pkgs.stdenv.mkDerivation { name = "aeneas_verify_coq"; @@ -183,7 +171,10 @@ default = aeneas; }; checks = { - inherit aeneas aeneas-tests aeneas-verify-fstar aeneas-verify-fstar-split - aeneas-verify-coq aeneas-verify-lean aeneas-verify-hol4; }; + inherit aeneas aeneas-tests + aeneas-verify-fstar + aeneas-verify-coq + aeneas-verify-lean + aeneas-verify-hol4; }; }); } |