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
17 lines
415 B
Bash
Executable File
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 |