Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-03-29 04:00:25 +0300
committerJose Perez Rodriguez <joperezr@microsoft.com>2017-03-29 20:00:07 +0300
commit610ebf8c2ec2b86e7fd81950364583da7ad5377b (patch)
tree01e16b15267426b93f9ceb511af6c3ba01e4a306 /cross
parent6971d5f62f599039ff1593ab74d0c181320fa56f (diff)
Fix tizen CI failure by #17554
Temporary fix of CI failure when it collects build results
Diffstat (limited to 'cross')
-rwxr-xr-xcross/arm32_ci_script.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/cross/arm32_ci_script.sh b/cross/arm32_ci_script.sh
index 040715ad1e..98f4b425a4 100755
--- a/cross/arm32_ci_script.sh
+++ b/cross/arm32_ci_script.sh
@@ -249,17 +249,21 @@ function cross_build_corefx_with_docker {
# Construct runtime directory
if [[ "$__buildConfig" == "release" ]]; then
__runtimePath="./bin/runtime/netcoreapp-Linux-Release-armel"
+ __nativePath="./bin/Linux.armel.Release/native"
__managedPath="./bin/runtime/netcoreapp-Linux-Release-x64"
else
__runtimePath="./bin/runtime/netcoreapp-Linux-Debug-armel"
+ __nativePath="./bin/Linux.armel.Debug/native"
__managedPath="./bin/runtime/netcoreapp-Linux-Debug-x64"
fi
+ mkdir $__runtimePath
pushd $__managedPath
rm apphost corerun dotnet
rm *.so
rm *.ni.dll
popd
+ cp $__nativePath/* $__runtimePath/
mv $__managedPath/* $__runtimePath/
rmdir $__managedPath
fi