diff --git a/README.md b/README.md new file mode 100644 index 0000000..61242ea --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# does it build? + +A webapp that checks which Rust targets build at any nightly. + +It does this by executing `cargo build --release -Zbuild-std=core` for every target and every nightly and displaying the result. + +There's a background job that continously builds every target for every target that it hasn't built yet. +It does this in parallel, using half of the available threads. + + +## Configuration + +- `DB_PATH`: Path to SQlite DB to store the results diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..2df8d9d --- /dev/null +++ b/default.nix @@ -0,0 +1,6 @@ +{ pkgs ? import { }, ... }: pkgs.rustPlatform.buildRustPackage { + src = pkgs.lib.cleanSource ./.; + pname = "does-it-build"; + version = "0.1.0"; + cargoLock.lockFile = ./Cargo.lock; +}