We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fca4828 commit 88395ceCopy full SHA for 88395ce
src/main/java/com/google/devtools/build/lib/analysis/platform/PlatformUtils.java
@@ -76,7 +76,11 @@ public static Platform getPlatformProto(
76
? remoteOptions.getRemoteDefaultExecProperties()
77
: ImmutableSortedMap.of();
78
79
- if ((spawn.getExecutionPlatform() == null || spawn.getExecutionPlatform().execProperties().isEmpty())
+ if ((spawn.getExecutionPlatform() == null
80
+ || (
81
+ spawn.getExecutionPlatform().execProperties().isEmpty()
82
+ && spawn.getExecutionPlatform().remoteExecutionProperties().isEmpty()
83
+ ))
84
&& spawn.getCombinedExecProperties().isEmpty()
85
&& defaultExecProperties.isEmpty()
86
&& additionalProperties.isEmpty()) {
0 commit comments