From 288410ee309f370c3c417728b93a5d0503e46a42 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Sat, 7 Sep 2024 22:43:10 +0200 Subject: [PATCH] more --- README.md | 13 +++++++++++++ default.nix | 6 ++++++ 2 files changed, 19 insertions(+) create mode 100644 README.md create mode 100644 default.nix 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; +}