We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24ec846 commit e80aa29Copy full SHA for e80aa29
.github/workflows/debug.yaml
@@ -41,3 +41,4 @@ jobs:
41
with:
42
detached: true
43
limit-access-to-actor: true
44
+
lib.nix
@@ -74,6 +74,8 @@ rec {
74
getRunnerForTarget = target:
75
if target.pkgsCross.stdenv.buildPlatform.canExecute target.pkgsCross.stdenv.hostPlatform
76
then null
77
+ else if pkgs.targetPlatform.system == "aarch64-darwin" && target.pkgsCross.targetPlatform.system == "x86_64-darwin"
78
+ then null # Rosetta can run x86_64 executables on Apple Silicon
79
else if target.pkgsCross.targetPlatform.isWindows
80
then
81
# Wine can only run programs from the same architecture
0 commit comments