This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ brew "icu4c"
2
+ brew "openssl"
Original file line number Diff line number Diff line change 94
94
# and FreeBSD builds use a build agent with dependencies
95
95
# preinstalled, so we only need this step for OSX and Windows.
96
96
- ${{ if eq(parameters.osGroup, 'OSX') }} :
97
- - script : sh eng/install-native-dependencies.sh $(osGroup)
97
+ - script : $(Build.SourcesDirectory)/ eng/install-native-dependencies.sh $(osGroup)
98
98
displayName : Install native dependencies
99
99
- ${{ if eq(parameters.osGroup, 'Windows_NT') }} :
100
100
# Necessary to install python
Original file line number Diff line number Diff line change 1
- #! /usr/bin/env sh
1
+ #! /usr/bin/env bash
2
2
3
3
if [ " $1 " = " Linux" ]; then
4
4
sudo apt update
@@ -14,7 +14,9 @@ elif [ "$1" = "OSX" ]; then
14
14
if [ " $? " != " 0" ]; then
15
15
exit 1;
16
16
fi
17
- brew install icu4c openssl
17
+
18
+ engdir=$( dirname " ${BASH_SOURCE[0]} " )
19
+ brew bundle --no-upgrade --no-lock --file " ${engdir} /Brewfile"
18
20
if [ " $? " != " 0" ]; then
19
21
exit 1;
20
22
fi
26
28
echo " Must pass \" Linux\" or \" OSX\" as first argument."
27
29
exit 1
28
30
fi
29
-
You can’t perform that action at this time.
0 commit comments