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

Update F* version to latest release #441

Merged
merged 5 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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: 4 additions & 0 deletions .github/workflows/install_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
nix profile install .#rustc
nix profile install .

- name: Ensure readme coherency
run: |
nix build .#check-readme-coherency -L

- name: Test the toolchain
run: |
nix build .#check-toolchain -L
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ target/
**/*.rs.bk
node_modules
TODO.org
.envrc
.direnv
_build
result
Expand Down
1 change: 1 addition & 0 deletions examples/.envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake .#fstar
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

First, make sure to have hax installed in PATH. Then:

* With Nix, `nix develop .#fstar-examples` setups a shell automatically for you.
* With Nix, `nix develop .#fstar` setups a shell automatically for you.

* Without Nix:
1. install F* `v2023.09.03` manually (see https://github.com/FStarLang/FStar/blob/master/INSTALL.md);
1. install F* `v2024.01.13`<!---FSTAR_VERSION--> manually (see https://github.com/FStarLang/FStar/blob/master/INSTALL.md);
1. make sure to have `fstar.exe` in PATH;
2. or set the `FSTAR_HOME` environment variable.
2. clone [Hacl*](https://github.com/hacl-star/hacl-star) somewhere;
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 27 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
};
};
rust-overlay.follows = "crane/rust-overlay";
fstar-flake = {
url = "github:FStarLang/FStar/v2023.09.03";
fstar = {
url = "github:FStarLang/FStar/v2024.01.13";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
Expand All @@ -27,10 +27,9 @@
nixpkgs,
rust-overlay,
crane,
fstar-flake,
hacl-star,
...
}:
} @ inputs:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {
Expand All @@ -41,7 +40,7 @@
craneLib = (crane.mkLib pkgs).overrideToolchain rustc;
ocamlformat = pkgs.ocamlformat_0_24_1;
rustfmt = pkgs.rustfmt;
fstar = fstar-flake.packages.${system}.default;
fstar = inputs.fstar.packages.${system}.default;
in rec {
packages = {
inherit rustc ocamlformat rustfmt fstar;
Expand All @@ -59,15 +58,37 @@

check-toolchain = checks.toolchain;
check-examples = checks.examples;
check-readme-coherency = checks.readme-coherency;
};
checks = {
toolchain = packages.hax.tests;
examples = pkgs.callPackage ./examples {
inherit (packages) hax;
inherit craneLib fstar hacl-star;
};
readme-coherency = let
src = pkgs.lib.sourceFilesBySuffices ./. [".md"];
in
pkgs.stdenv.mkDerivation {
name = "readme-coherency";
inherit src;
buildPhase = ''
${apps.replace-fstar-versions-md.program}
diff -r . ${src}
'';
installPhase = "touch $out";
};
};
apps = {
replace-fstar-versions-md = {
type = "app";
program = "${pkgs.writeScript "replace-fstar-versions-md" ''
FSTAR_VERSION=$(cat ${./flake.lock} | ${pkgs.jq}/bin/jq '.nodes.fstar.original.ref' -r)
${pkgs.fd}/bin/fd \
-X ${pkgs.sd}/bin/sd '`.*?`(<!---FSTAR_VERSION-->)' '`'"$FSTAR_VERSION"'`$1' **/*.md \
";" --glob '*.md'
''}";
};
serve-rustc-docs = {
type = "app";
program = "${pkgs.writeScript "serve-rustc-docs" ''
Expand Down Expand Up @@ -116,7 +137,7 @@
];
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
in {
fstar-examples = pkgs.mkShell {
fstar = pkgs.mkShell {
inherit inputsFrom LIBCLANG_PATH;
HACL_HOME = "${hacl-star}";
packages = packages ++ [fstar];
Expand Down
1 change: 1 addition & 0 deletions proof-libs/fstar/.envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake .#fstar