summaryrefslogtreecommitdiff
path: root/pkgs/development/mobile/androidenv/test-suite.nix
blob: 4efca4b28b83dbc58e25a80f56a9e80d2adcd173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  callPackage,
  lib,
  stdenv,
  meta,
}:
let
  examples-shell = callPackage ./examples/shell.nix { licenseAccepted = true; };
  examples-shell-with-emulator = callPackage ./examples/shell-with-emulator.nix {
    licenseAccepted = true;
  };
  examples-shell-without-emulator = callPackage ./examples/shell-without-emulator.nix {
    licenseAccepted = true;
  };
  all-tests =
    examples-shell.passthru.tests
    // (examples-shell-with-emulator.passthru.tests // examples-shell-without-emulator.passthru.tests);
in
stdenv.mkDerivation {
  pname = "androidenv-test-suite";
  version = (lib.importJSON ./repo.json).latest.fingerprint or "0000000000000000";
  buildInputs = lib.attrValues all-tests;

  buildCommand = ''
    touch $out
  '';

  passthru.tests = all-tests;

  passthru.updateScript = {
    command = [ ./update.rb ];
    attrPath = "androidenv.test-suite";
    supportedFeatures = [ "commit" ];
  };

  meta = meta // {
    timeout = 60;
  };
}