Skip to content

Commit 991f3c8

Browse files
committed
treewide: re-enable godot tests
1 parent 57b2123 commit 991f3c8

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

tests/test-sources/modules/dependencies.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
}:
66
let
77
disabledDeps = [
8-
# TODO: 2025-04-20: build failure of godot_4
9-
# https://github.com/NixOS/nixpkgs/issues/399818
10-
# https://github.com/NixOS/nixpkgs/pull/400347
11-
"godot"
128
];
139

1410
inherit (pkgs.stdenv) hostPlatform;

tests/test-sources/plugins/by-name/godot/default.nix

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@
44
...
55
}:
66
let
7-
enable =
8-
# TODO: 2025-04-20: build failure of godot_4
9-
# https://github.com/NixOS/nixpkgs/issues/399818
10-
# https://github.com/NixOS/nixpkgs/pull/400347
11-
false
12-
# Godot is only available on Linux
13-
&& lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.godot_4;
7+
# Godot is only available on Linux
8+
enable = lib.meta.availableOn pkgs.stdenv.hostPlatform pkgs.godot_4;
149
in
1510
lib.optionalAttrs enable {
1611
empty = {

0 commit comments

Comments
 (0)