Files
yoga/csharp/build-native.sh
Rui Marinho 0405c4f77d Update nuget and sln
Summary:
Update nuget CI
Closes https://github.com/facebook/yoga/pull/463

Reviewed By: emilsjolander

Differential Revision: D4666500

Pulled By: splhack

fbshipit-source-id: 1d77457d59eafe6de855a27b4f8a8567cd415b7b
2017-03-07 09:11:14 -08:00

17 lines
415 B
Bash
Executable File

#!/bin/sh
echo $ANDROID_SDK
if buck --version >/dev/null 2>&1; then true; else
echo "Building Buck!"
mkdir lib
cd lib
git clone https://github.com/facebook/buck.git --depth 1
cd buck
ant
cd ..
cd ..
fi
buck build //:yoga
buck build //csharp:yoganet-ios
buck build //csharp:yoganet-macosx
buck build //csharp:yoganet#android-x86,shared
buck build //csharp:yoganet#android-armv7,shared