specify supportedPlatforms to allow aarch64 tests

This commit is contained in:
Graham Christensen 2018-01-29 12:24:21 -05:00
parent 07f3d265f9
commit 8eb076077a
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -119,6 +119,13 @@ impl Nix {
],
);
command.args(&["--argstr", "system", &self.system]);
command.args(
&[
"--arg",
"supportedSystems",
&format!("[\"{}\"]", &self.system),
],
);
command.args(args);
return command;