pdal: add package tests

This commit is contained in:
Ivan Mincik 2023-12-19 14:54:11 +01:00
parent fabbe931ab
commit c6e8d2b31e
2 changed files with 19 additions and 4 deletions

View File

@ -1,4 +1,5 @@
{ lib, stdenv
, callPackage
, fetchFromGitHub
, cmake
, pkg-config
@ -19,14 +20,14 @@
, zstd
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pdal";
version = "2.5.6";
src = fetchFromGitHub {
owner = "PDAL";
repo = "PDAL";
rev = version;
rev = finalAttrs.version;
sha256 = "sha256-JKwa89c05EfZ/FxOkj8lYmw0o2EgSqafRDIV2mTpZ5E=";
};
@ -102,10 +103,14 @@ stdenv.mkDerivation rec {
runHook preCheck
# tests are flaky and they seem to fail less often when they don't run in
# parallel
ctest -j 1 --output-on-failure -E '^${lib.concatStringsSep "|" disabledTests}$'
ctest -j 1 --output-on-failure -E '^${lib.concatStringsSep "|" finalAttrs.disabledTests}$'
runHook postCheck
'';
passthru.tests = {
pdal = callPackage ./tests.nix { pdal = finalAttrs.finalPackage; };
};
meta = with lib; {
description = "PDAL is Point Data Abstraction Library. GDAL for point cloud data";
homepage = "https://pdal.io";
@ -113,4 +118,4 @@ stdenv.mkDerivation rec {
maintainers = teams.geospatial.members;
platforms = platforms.all;
};
}
})

View File

@ -0,0 +1,10 @@
{ runCommand, pdal }:
let
inherit (pdal) pname;
in
runCommand "${pname}-tests" { meta.timeout = 60; }
''
${pdal}/bin/pdal --drivers
touch $out
''