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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Shields <directhex@apebox.org>2020-03-18 02:19:56 +0300
committerGitHub <noreply@github.com>2020-03-18 02:19:56 +0300
commit65a1d2c312f3a954aa75bd38167df72d5c8bad20 (patch)
tree189c8a650110cdc14fa486fdb3d4dc657f11bf78 /eng/install-native-dependencies.sh
parent91f14182958b0fad9c9b4dc7d908ff955581979b (diff)
Add AzDO builds for iOS (#33424)
This is based on #33292
Diffstat (limited to 'eng/install-native-dependencies.sh')
-rw-r--r--eng/install-native-dependencies.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/eng/install-native-dependencies.sh b/eng/install-native-dependencies.sh
index a73d4918c52..e837b017c7c 100644
--- a/eng/install-native-dependencies.sh
+++ b/eng/install-native-dependencies.sh
@@ -23,8 +23,18 @@ elif [ "$1" = "OSX" ]; then
if [ "$?" != "0" ]; then
exit 1;
fi
+elif [ "$1" = "iOS" ]; then
+ brew update
+ brew upgrade
+ if [ "$?" != "0" ]; then
+ exit 1;
+ fi
+ brew install openssl autoconf automake libtool pkg-config python3
+ if [ "$?" != "0" ]; then
+ exit 1;
+ fi
else
- echo "Must pass \"Linux\" or \"OSX\" as first argument."
+ echo "Must pass \"Linux\", \"iOS\" or \"OSX\" as first argument."
exit 1
fi