Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/ofborg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4093eaeeeea7
Choose a base ref
...
head repository: NixOS/ofborg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9d8c4d9da10f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 15, 2020

  1. Add check for lib tests

    Without this, a big part of the lib tests aren't being done, which
    previously lead to e.g. NixOS/nixpkgs#76861
    And this will also be useful for checked maintainers in NixOS/nixpkgs#82461
    infinisil committed Mar 15, 2020
    Copy the full SHA
    9066b70 View commit details

Commits on Apr 2, 2020

  1. Merge pull request #438 from Infinisil/lib-tests

    Add check for lib tests
    grahamc authored Apr 2, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    9d8c4d9 View commit details
Showing with 11 additions and 0 deletions.
  1. +11 −0 ofborg/src/tasks/eval/nixpkgs.rs
11 changes: 11 additions & 0 deletions ofborg/src/tasks/eval/nixpkgs.rs
Original file line number Diff line number Diff line change
@@ -439,6 +439,17 @@ impl<'a> EvaluationStrategy for NixpkgsStrategy<'a> {
],
self.nix.clone(),
),
EvalChecker::new(
"lib-tests",
nix::Operation::Build,
vec![
String::from("--arg"),
String::from("pkgs"),
String::from("import ./. {}"),
String::from("./lib/tests/release.nix"),
],
self.nix.clone(),
),
EvalChecker::new(
"nixos",
nix::Operation::Instantiate,