Skip to content

Commit 995409f

Browse files
authored
Disable compile-native projects for linux-bionic (#100712)
After #100623, the official build is broken. Our infrastructure for building native runtime component libraries using NativeAOT is failing for linux-bionic. Disable building on linux-bionic for now to unblock the build.
1 parent 2496619 commit 995409f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/native/managed/compile-native.proj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
<PropertyGroup>
2020
<!-- disable on Mono, for now -->
2121
<SupportsNativeAotComponents Condition="'$(SupportsNativeAotComponents)' == '' and '$(RuntimeFlavor)' == 'Mono'">false</SupportsNativeAotComponents>
22+
<!-- disable on linux-bionic, for now -->
23+
<SupportsNativeAotComponents Condition="'$(SupportsNativeAotComponents)' == '' and '$(TargetsLinuxBionic)' == 'true'">false</SupportsNativeAotComponents>
2224
<!-- NativeAOT doesn't support cross-OS compilation. disable for crossdac-->
2325
<SupportsNativeAotComponents Condition="'$(SupportsNativeAotComponents)' == '' and '$(HostOS)' != '$(TargetOS)'">false</SupportsNativeAotComponents>
2426
<!-- unsupported targets -->

0 commit comments

Comments
 (0)