Bump CoreFx to rc2-23808
Workaround for issue 1294 Improve crossgen notifications
This commit is contained in:
parent
199093b09c
commit
48797ea80a
67 changed files with 239 additions and 156 deletions
27
scripts/clean/clear-nuget-cache.ps1
Normal file
27
scripts/clean/clear-nuget-cache.ps1
Normal file
|
@ -0,0 +1,27 @@
|
|||
#
|
||||
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
#
|
||||
|
||||
. $PSScriptRoot\..\common\_common.ps1
|
||||
|
||||
if ($env:CI_BUILD -eq "1") {
|
||||
# periodically clear out the package cache on the CI server
|
||||
$PackageCacheFile = "$env:NUGET_PACKAGES\packageCacheTime.txt"
|
||||
|
||||
if(!(Test-Path $PackageCacheFile)) {
|
||||
Get-Date | Out-File -FilePath $PackageCacheFile
|
||||
}
|
||||
else {
|
||||
$PackageCacheTimeProperty = Get-ItemProperty -Path $PackageCacheFile -Name CreationTimeUtc
|
||||
$PackageCacheTime = [datetime]($PackageCacheTimeProperty).CreationTimeUtc
|
||||
|
||||
if ($PackageCacheTime -lt ([datetime]::UtcNow).AddHours(-$env:NUGET_PACKAGES_CACHE_TIME_LIMIT)) {
|
||||
header "Clearing package cache"
|
||||
|
||||
Remove-Item -Recurse -Force "$env:NUGET_PACKAGES"
|
||||
mkdir $env:NUGET_PACKAGES | Out-Null
|
||||
Get-Date | Out-File -FilePath $PackageCacheFile
|
||||
}
|
||||
}
|
||||
}
|
37
scripts/clean/clear-nuget-cache.sh
Executable file
37
scripts/clean/clear-nuget-cache.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
#
|
||||
|
||||
set -e
|
||||
|
||||
SOURCE="${BASH_SOURCE[0]}"
|
||||
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
SOURCE="$(readlink "$SOURCE")"
|
||||
[[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
||||
done
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
source "$DIR/../common/_common.sh"
|
||||
|
||||
if [ ! -z "$CI_BUILD" ]; then
|
||||
# periodically clear out the package cache on the CI server
|
||||
PackageCacheFile="$NUGET_PACKAGES/packageCacheTime.txt"
|
||||
if [ ! -f $PackageCacheFile ]; then
|
||||
date > $PackageCacheFile
|
||||
else
|
||||
#$NUGET_PACKAGES_CACHE_TIME_LIMIT is in hours
|
||||
CacheTimeLimitInSeconds=$(($NUGET_PACKAGES_CACHE_TIME_LIMIT * 3600))
|
||||
CacheExpireTime=$(($(date +%s) - $CacheTimeLimitInSeconds))
|
||||
|
||||
if [ $(date +%s -r $PackageCacheFile) -lt $CacheExpireTime ]; then
|
||||
header "Clearing package cache"
|
||||
|
||||
rm -Rf $NUGET_PACKAGES
|
||||
mkdir -p $NUGET_PACKAGES
|
||||
date > $PackageCacheFile
|
||||
fi
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue