Attempt to fix CI build issues
This commit is contained in:
parent
3760d3724d
commit
6f44227917
|
|
@ -28,6 +28,9 @@ function DownloadWithRetry([string] $url, [string] $downloadLocation, [int] $ret
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Avoid issues similar to https://github.com/npm/npm/issues/10826
|
||||||
|
npm cache clean
|
||||||
|
|
||||||
cd $PSScriptRoot
|
cd $PSScriptRoot
|
||||||
|
|
||||||
$repoFolder = $PSScriptRoot
|
$repoFolder = $PSScriptRoot
|
||||||
|
|
|
||||||
3
build.sh
3
build.sh
|
|
@ -2,6 +2,9 @@
|
||||||
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
cd $repoFolder
|
cd $repoFolder
|
||||||
|
|
||||||
|
# Avoid issues similar to https://github.com/npm/npm/issues/10826
|
||||||
|
npm cache clean
|
||||||
|
|
||||||
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
|
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
|
||||||
if [ ! -z $KOREBUILD_ZIP ]; then
|
if [ ! -z $KOREBUILD_ZIP ]; then
|
||||||
koreBuildZip=$KOREBUILD_ZIP
|
koreBuildZip=$KOREBUILD_ZIP
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue