We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b382f1 commit e33e7a3Copy full SHA for e33e7a3
lib/gitlab-ci.nix
@@ -55,6 +55,10 @@ let
55
nixIntegrationTestBuildJob = attrPath: {
56
"tags" = [ "native-nix" ];
57
"stage" = "test";
58
+ # The resource groups leads to integration test not running in parallel
59
+ # (both intra and inter pipeline). It has turned out, that the nixos tests
60
+ # are too heavyweight and run in timeouts if executed in parallel.
61
+ "resource_group" = "nixos-test";
62
"script" = [
63
"NIX_PATH= nix build .#${attrPath}.driver"
64
"./result/bin/nixos-test-driver"
0 commit comments