Skip to content

Commit

Permalink
tracker: Disable tests on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Apr 7, 2023
1 parent 1ad73cb commit 5c10f40
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/development/libraries/tracker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,11 @@ stdenv.mkDerivation rec {
"-Dsystemd_user_services=false"
];

# https://gitlab.gnome.org/GNOME/tracker/-/issues/398
doCheck = !stdenv.isi686;
doCheck =
# https://gitlab.gnome.org/GNOME/tracker/-/issues/397
!stdenv.isAarch64
# https://gitlab.gnome.org/GNOME/tracker/-/issues/398
&& !stdenv.isi686;

postPatch = ''
chmod +x \
Expand Down

1 comment on commit 5c10f40

@vcunat
Copy link
Member

@vcunat vcunat commented on 5c10f40 Apr 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They also fail with x86_64-darwin. https://hydra.nixos.org/build/215285192

Please sign in to comment.