2022-11-01T22:32:08 grcov 0.8.12 -> 0.8.13 https://github.com/mozilla/grcov/releases 2022-11-01T22:32:11 attrpath: grcov 2022-11-01T22:32:11 Checking auto update branch... 2022-11-01T22:32:11 No auto update branch exists 2022-11-01T22:32:12 Old version 0.8.12" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "grcov"; version = "0.8.13"; src = fetchFromGitHub { owner = "mozilla"; repo = pname; rev = "v${version}"; sha256 = "sha256-fyITsOlkBY1f9AjQqUII7G1Onm0i0FIqNspPi8J+eOM="; }; cargoSha256 = "sha256-qbxJJGwJ7hRNIujud10AYnM2NaNwjBB5zhOxXp/5z/k="; # tests do not find grcov path correctly checkFlags = let skipList = [ "test_coveralls_service_job_id_is_not_sufficient" "test_coveralls_service_name_is_not_sufficient" "test_coveralls_works_with_just_service_name_and_job_id_args" "test_coveralls_works_with_just_token_arg" "test_integration" "test_integration_guess_single_file" "test_integration_zip_dir" "test_integration_zip_zip" ]; skipFlag = test: "--skip " + test; in builtins.concatStringsSep " " (builtins.map skipFlag skipList); meta = with lib; { description = "Rust tool to collect and aggregate code coverage data for multiple source files"; homepage = "https://github.com/mozilla/grcov"; license = licenses.mpl20; maintainers = with maintainers; [ DieracDelta ]; }; }