summaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
authorCyd Haselton <chaselton@gmail.com>2017-06-08 17:34:04 -0500
committerGaurav Khanna <gkhanna@microsoft.com>2017-06-08 15:34:04 -0700
commitb4cbd9dbdc9f1850e5953bc785d2abb6cf0f69c3 (patch)
treeb5cb2fa3c8c09423dc3cfff4dda8b5cfa14d4ec8 /config.json
parent0060a37d80d8164a2454557213832348c7bd85ec (diff)
downloadcoreclr-b4cbd9dbdc9f1850e5953bc785d2abb6cf0f69c3.tar.gz
coreclr-b4cbd9dbdc9f1850e5953bc785d2abb6cf0f69c3.tar.bz2
coreclr-b4cbd9dbdc9f1850e5953bc785d2abb6cf0f69c3.zip
First steps for generating nuget packages for ARM64/Android. (#10286)
* First steps for generating nuget packages for ARM64/Android. Adds Android RIDS and related conditionals to appropriate files * Additional changes for Android package build * Revert addition of Android to supported packages * Allow Android .nuget package build Adding runtime.Android files for package generation Adding TODO for reliable generation of __DistroRid for Android * Added/corrected logic for detecting __DistroRid at commandline Removed hack and TODO * Removed newline * Revert unintentional change to osx rid * Removed commenting of __DistroRid initialization * Latest fixes for __DistroRid cmdline detection Removed __DistroRid initialization (clobbers value set at cmdline) Removed echo test of __DistroRid in generate nuget pkg function (Hopefully) fixed cross-build os-release detection * Removed android.21-arm from supported RIDs Removed arm32 from supported RIDs until test build can be done or CI for arm32 added (?) * Fixes for package generation for android Modified build-android-rootfs.sh so it would generate file w/platform info Reverted all prior changes to initTargetDistroRid, added new android platform detection * Fixed conditional for Android * Added platform generation for Android portable build, if ever needed * Added information about android_platform Added help info about android_platform file Added TODO for dynamic generation of RID based on $__ApiLevel and $__BuildArch * Syntax cleanup for build.sh Removed extra space in initTargetDistroRid() logic * Recommended review changes removed Android-specific runtime files for packaging added conditional to have Android use Linux runtime files * Updated topic branch from master, resolving SPC.ni.dll file nuget pkg issue * ericstj review changes Fixed accidental fedora version change Fixed indenting * Removed TODO comment; logic already in place, added in earlier commit * Removed Android OfficialBuildRID
Diffstat (limited to 'config.json')
-rw-r--r--config.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.json b/config.json
index a85dcd5ecd..8f3a58b8ec 100644
--- a/config.json
+++ b/config.json
@@ -51,7 +51,7 @@
"FilterToOSGroup": {
"description": "Specifies the OSGroup.",
"valueType": "property",
- "values": [ "Windows_NT", "Linux", "Unix", "OSX" ],
+ "values": [ "Windows_NT", "Linux", "Unix", "OSX", "Android" ],
"defaultValue": "${OSName}"
},
"RestoreNETCorePlatforms": {
@@ -93,7 +93,7 @@
"__BuildOS": {
"description": "Specifies the OS to publish packages.",
"valueType": "property",
- "values": [ "Linux", "OSX", "FreeBSD", "OpenBSD", "NetBSD", "SunOS", "Windows_NT" ],
+ "values": [ "Linux", "OSX", "FreeBSD", "OpenBSD", "NetBSD", "SunOS", "Windows_NT", "Android" ],
"defaultValue": "${OSName}"
},
"__DistroRid": {
@@ -357,7 +357,7 @@
"RuntimeId": {
"description": "Specifies the OS to build Core_Root for",
"valueType": "property",
- "values": [ "debian.8-x64", "fedora.24-x64", "fedora.25-x64", "opensuse.42.1-x64", "osx.10.12-x64", "rhel.7-x64", "ubuntu.14.04-x64", "ubuntu.16.04-x64", "ubuntu.16.10-x64" ],
+ "values": [ "debian.8-x64", "fedora.24-x64", "fedora.25-x64", "opensuse.42.1-x64", "osx.10.12-x64", "rhel.7-x64", "ubuntu.14.04-x64", "ubuntu.16.04-x64", "ubuntu.16.10-x64", "android.21-arm64" ],
"defaultValue": "${__RuntimeId}"
},
"BatchRestorePackages": {