summaryrefslogtreecommitdiff
path: root/build-test.sh
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2018-04-23 17:50:28 -0700
committerWes Haggard <Wes.Haggard@microsoft.com>2018-04-23 17:53:30 -0700
commit41de28be0d29c2da2185c31440c4b71f11a8b6f2 (patch)
tree93128296f98022578f4084bf571830e8f6968ff5 /build-test.sh
parent05a2f5f3212d7060e342d83df5406b715c055b06 (diff)
downloadcoreclr-41de28be0d29c2da2185c31440c4b71f11a8b6f2.tar.gz
coreclr-41de28be0d29c2da2185c31440c4b71f11a8b6f2.tar.bz2
coreclr-41de28be0d29c2da2185c31440c4b71f11a8b6f2.zip
Remove Alpine 3.6 builds
The alpine 3.6 builds have been replaced with the more generic linux-musl builds so removing them.
Diffstat (limited to 'build-test.sh')
-rwxr-xr-xbuild-test.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/build-test.sh b/build-test.sh
index 7cb4c02fac..2de1f69e28 100755
--- a/build-test.sh
+++ b/build-test.sh
@@ -20,14 +20,12 @@ initHostDistroRid()
elif [ -e /etc/os-release ]; then
source /etc/os-release
if [[ $ID == "alpine" ]]; then
- # remove the last version digit
- VERSION_ID=${VERSION_ID%.*}
+ __HostDistroRid="linux-musl-$__HostArch"
else
__PortableBuild=1
+ __HostDistroRid="$ID.$VERSION_ID-$__HostArch"
fi
-
- __HostDistroRid="$ID.$VERSION_ID-$__HostArch"
- fi
+ fi
elif [ "$__HostOS" == "FreeBSD" ]; then
__freebsd_version=`sysctl -n kern.osrelease | cut -f1 -d'.'`
__HostDistroRid="freebsd.$__freebsd_version-$__HostArch"