forked from xamarin/xamarin-macios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system-dependencies.sh
executable file
·967 lines (842 loc) · 31.7 KB
/
system-dependencies.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
#!/bin/bash -e
set -o pipefail
cd $(dirname $0)
FAIL=
PROVISION_DOWNLOAD_DIR=/tmp/x-provisioning
SUDO=sudo
OPTIONAL_SHARPIE=1
OPTIONAL_SIMULATORS=1
# parse command-line arguments
while ! test -z $1; do
case $1 in
--no-sudo)
SUDO=
shift
;;
--provision-xcode)
PROVISION_XCODE=1
unset IGNORE_XCODE
shift
;;
--provision)
# historical reasons :(
PROVISION_XCODE=1
PROVISION_VS=1
unset IGNORE_XCODE
unset IGNORE_VISUAL_STUDIO
shift
;;
--provision-*-studio)
PROVISION_VS=1
unset IGNORE_VISUAL_STUDIO
shift
;;
--provision-mono)
PROVISION_MONO=1
unset IGNORE_MONO
shift
;;
--provision-cmake)
PROVISION_CMAKE=1
unset IGNORE_CMAKE
shift
;;
--provision-7z)
PROVISION_7Z=1
unset IGNORE_7Z
shift
;;
--provision-autotools)
PROVISION_AUTOTOOLS=1
unset IGNORE_AUTOTOOLS
shift
;;
--provision-sharpie)
PROVISION_SHARPIE=1
unset OPTIONAL_SHARPIE
unset IGNORE_SHARPIE
shift
;;
--provision-simulators)
PROVISION_SIMULATORS=1
unset OPTIONAL_SIMULATORS
unset IGNORE_SIMULATORS
shift
;;
--provision-all)
PROVISION_MONO=1
unset IGNORE_MONO
PROVISION_VS=1
unset IGNORE_VISUAL_STUDIO
PROVISION_XCODE=1
unset IGNORE_XCODE
PROVISION_CMAKE=1
unset IGNORE_CMAKE
PROVISION_7Z=1
unset IGNORE_7Z
PROVISION_AUTOTOOLS=1
unset IGNORE_AUTOTOOLS
PROVISION_HOMEBREW=1
unset IGNORE_HOMEBREW
PROVISION_SHARPIE=1
unset IGNORE_SHARPIE
PROVISION_SIMULATORS=1
unset IGNORE_SIMULATORS
shift
;;
--ignore-all)
IGNORE_OSX=1
IGNORE_MONO=1
IGNORE_VISUAL_STUDIO=1
IGNORE_XCODE=1
IGNORE_CMAKE=1
IGNORE_7Z=1
IGNORE_AUTOTOOLS=1
IGNORE_HOMEBREW=1
IGNORE_SHARPIE=1
IGNORE_SIMULATORS=1
shift
;;
--ignore-osx)
IGNORE_OSX=1
shift
;;
--ignore-xcode)
IGNORE_XCODE=1
shift
;;
--ignore-*-studio)
IGNORE_VISUAL_STUDIO=1
shift
;;
--ignore-mono)
IGNORE_MONO=1
shift
;;
--ignore-autotools)
IGNORE_AUTOTOOLS=1
shift
;;
--ignore-cmake)
IGNORE_CMAKE=1
shift
;;
--ignore-7z)
IGNORE_7Z=1
shift
;;
--ignore-sharpie)
IGNORE_SHARPIE=1
shift
;;
--enforce-sharpie)
unset IGNORE_SHARPIE
unset OPTIONAL_SHARPIE
shift
;;
--ignore-simulators)
IGNORE_SIMULATORS=1
shift
;;
--enforce-simulators)
unset IGNORE_SIMULATORS
unset OPTIONAL_SIMULATORS
shift
;;
-v | --verbose)
set -x
shift
;;
*)
echo "Unknown argument: $1"
exit 1
;;
esac
done
# reporting functions
COLOR_RED=$(tput setaf 1 2>/dev/null || true)
COLOR_ORANGE=$(tput setaf 3 2>/dev/null || true)
COLOR_MAGENTA=$(tput setaf 5 2>/dev/null || true)
COLOR_CLEAR=$(tput sgr0 2>/dev/null || true)
function fail () {
echo " ${COLOR_RED}$1${COLOR_CLEAR}"
FAIL=1
}
function warn () {
echo " ${COLOR_ORANGE}$1${COLOR_CLEAR}"
}
function ok () {
echo " $1"
}
function log () {
echo " $1"
}
# $1: the version to check
# $2: the minimum version to check against
function is_at_least_version () {
ACT_V=$1
MIN_V=$2
if [[ "$ACT_V" == "$MIN_V" ]]; then
return 0
fi
IFS=. read -a V_ACT <<< "$ACT_V"
IFS=. read -a V_MIN <<< "$MIN_V"
# get the minimum # of elements
AC=${#V_ACT[@]}
MC=${#V_MIN[@]}
COUNT=$(($AC>$MC?$MC:$AC))
C=0
while (( $C < $COUNT )); do
ACT=${V_ACT[$C]}
MIN=${V_MIN[$C]}
if (( $ACT > $MIN )); then
return 0
elif (( "$MIN" > "$ACT" )); then
return 1
fi
let C++
done
if (( $AC == $MC )); then
# identical?
return 0
fi
if (( $AC > $MC )); then
# more version fields in actual than min: OK
return 0
elif (( $AC == $MC )); then
# entire strings aren't equal (first check in function), but each individual field is?
return 0
else
# more version fields in min than actual (1.0 vs 1.0.1 for instance): not OK
return 1
fi
}
function install_mono () {
local MONO_URL=`grep MIN_MONO_URL= Make.config | sed 's/.*=//'`
local MIN_MONO_VERSION=`grep MIN_MONO_VERSION= Make.config | sed 's/.*=//'`
if test -z $MONO_URL; then
fail "No MIN_MONO_URL set in Make.config, cannot provision"
return
fi
mkdir -p $PROVISION_DOWNLOAD_DIR
log "Downloading Mono $MIN_MONO_VERSION from $MONO_URL to $PROVISION_DOWNLOAD_DIR..."
local MONO_NAME=`basename $MONO_URL`
local MONO_PKG=$PROVISION_DOWNLOAD_DIR/$MONO_NAME
curl -L $MONO_URL > $MONO_PKG
log "Installing Mono $MIN_MONO_VERSION from $MONO_URL..."
$SUDO installer -pkg $MONO_PKG -target /
rm -f $MONO_PKG
}
function install_visual_studio () {
local VS="/Applications/Visual Studio.app"
local VS_URL=`grep MIN_VISUAL_STUDIO_URL= Make.config | sed 's/.*=//'`
local MIN_VISUAL_STUDIO_VERSION=`grep MIN_VISUAL_STUDIO_VERSION= Make.config | sed 's/.*=//'`
if test -z $VS_URL; then
fail "No MIN_VISUAL_STUDIO_URL set in Make.config, cannot provision"
return
fi
mkdir -p $PROVISION_DOWNLOAD_DIR
log "Downloading Visual Studio $MIN_VISUAL_STUDIO_VERSION from $VS_URL to $PROVISION_DOWNLOAD_DIR..."
local VS_NAME=`basename $VS_URL`
local VS_DMG=$PROVISION_DOWNLOAD_DIR/$VS_NAME
curl -L $VS_URL > $VS_DMG
local VS_MOUNTPOINT=$PROVISION_DOWNLOAD_DIR/$VS_NAME-mount
log "Mounting $VS_DMG into $VS_MOUNTPOINT..."
hdiutil attach $VS_DMG -mountpoint $VS_MOUNTPOINT -quiet -nobrowse
log "Removing previous Visual Studio from $VS"
$SUDO rm -Rf "$VS"
log "Installing Visual Studio $MIN_VISUAL_STUDIO_VERSION to $VS..."
$SUDO cp -R "$VS_MOUNTPOINT/Visual Studio.app" /Applications
log "Unmounting $VS_DMG..."
hdiutil detach $VS_MOUNTPOINT -quiet
VS_ACTUAL_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' "$VS/Contents/Info.plist"`
ok "Visual Studio $VS_ACTUAL_VERSION provisioned"
rm -f $VS_DMG
}
function run_xcode_first_launch ()
{
local XCODE_VERSION="$1"
local XCODE_DEVELOPER_ROOT="$2"
# xcodebuild -runFirstLaunch seems to have been introduced in Xcode 9
if ! is_at_least_version "$XCODE_VERSION" 9.0; then
return
fi
# Delete any cached files by xcodebuild, because other branches'
# system-dependencies.sh keep installing earlier versions of these
# packages manually, which means subsequent first launch checks will
# succeed because we've successfully run the first launch tasks once
# (and this is cached), while someone else (we!) overwrote with
# earlier versions (bypassing the cache).
#
# Removing the cache will make xcodebuild realize older packages are installed,
# and (re-)install any newer packages.
#
# We'll be able to remove this logic one day, when all branches in use are
# using 'xcodebuild -runFirstLaunch' instead of manually installing
# packages.
find /var/folders -name '*com.apple.dt.Xcode.InstallCheckCache*' -print -delete 2>/dev/null | sed 's/^\(.*\)$/ Deleted Xcode cache file: \1 (this is normal)/' || true
if ! "$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild" -checkFirstLaunchStatus; then
if ! test -z "$PROVISION_XCODE"; then
# Remove sudo's cache as well, otherwise nothing will happen.
$SUDO find /var/folders -name '*com.apple.dt.Xcode.InstallCheckCache*' -print -delete 2>/dev/null | sed 's/^\(.*\)$/ Deleted Xcode cache file: \1 (this is normal)/' || true
# Run the first launch tasks
log "Executing '$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -runFirstLaunch'"
$SUDO "$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild" -runFirstLaunch
log "Executed '$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -runFirstLaunch'"
else
fail "Xcode has pending first launch tasks. Execute '$XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -runFirstLaunch' to execute those tasks."
return
fi
fi
}
function install_specific_xcode () {
local XCODE_URL=`grep XCODE$1_URL= Make.config | sed 's/.*=//'`
local XCODE_VERSION=`grep XCODE$1_VERSION= Make.config | sed 's/.*=//'`
local XCODE_DEVELOPER_ROOT="$2"
local XCODE_ROOT="$(dirname "$(dirname "$XCODE_DEVELOPER_ROOT")")"
if test -z $XCODE_URL; then
fail "No XCODE$1_URL set in Make.config, cannot provision"
return
fi
mkdir -p $PROVISION_DOWNLOAD_DIR
log "Downloading Xcode $XCODE_VERSION from $XCODE_URL to $PROVISION_DOWNLOAD_DIR..."
local XCODE_NAME=`basename $XCODE_URL`
local XCODE_DMG=$PROVISION_DOWNLOAD_DIR/$XCODE_NAME
# To test this script with new Xcode versions, copy the downloaded file to $XCODE_DMG,
# uncomment the following curl line, and run ./system-dependencies.sh --provision-xcode
if test -f "$HOME/Downloads/$XCODE_NAME"; then
log "Found Xcode $XCODE_VERSION in your ~/Downloads folder, copying that version instead."
cp "$HOME/Downloads/$XCODE_NAME" "$XCODE_DMG"
else
curl -L $XCODE_URL > $XCODE_DMG
fi
if [[ ${XCODE_DMG: -4} == ".dmg" ]]; then
local XCODE_MOUNTPOINT=$PROVISION_DOWNLOAD_DIR/$XCODE_NAME-mount
log "Mounting $XCODE_DMG into $XCODE_MOUNTPOINT..."
hdiutil attach $XCODE_DMG -mountpoint $XCODE_MOUNTPOINT -quiet -nobrowse
log "Removing previous Xcode from $XCODE_ROOT"
rm -Rf $XCODE_ROOT
log "Installing Xcode $XCODE_VERSION to $XCODE_ROOT..."
cp -R $XCODE_MOUNTPOINT/*.app $XCODE_ROOT
log "Unmounting $XCODE_DMG..."
hdiutil detach $XCODE_MOUNTPOINT -quiet
elif [[ ${XCODE_DMG: -4} == ".xip" ]]; then
log "Extracting $XCODE_DMG..."
pushd . > /dev/null
cd $PROVISION_DOWNLOAD_DIR
# make sure there's nothing interfering
rm -Rf *.app
rm -Rf $XCODE_ROOT
# extract
/System/Library/CoreServices/Applications/Archive\ Utility.app/Contents/MacOS/Archive\ Utility "$XCODE_DMG"
log "Installing Xcode $XCODE_VERSION to $XCODE_ROOT..."
mv *.app $XCODE_ROOT
popd > /dev/null
else
fail "Don't know how to install $XCODE_DMG"
fi
rm -f $XCODE_DMG
log "Removing any com.apple.quarantine attributes from the installed Xcode"
$SUDO xattr -d -r com.apple.quarantine $XCODE_ROOT
if is_at_least_version $XCODE_VERSION 5.0; then
log "Accepting Xcode license"
$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -license accept
fi
if is_at_least_version "$XCODE_VERSION" 9.0; then
run_xcode_first_launch "$XCODE_VERSION" "$XCODE_DEVELOPER_ROOT"
elif is_at_least_version $XCODE_VERSION 8.0; then
PKGS="MobileDevice.pkg MobileDeviceDevelopment.pkg XcodeSystemResources.pkg"
for pkg in $PKGS; do
if test -f "$XCODE_DEVELOPER_ROOT/../Resources/Packages/$pkg"; then
log "Installing $pkg"
$SUDO /usr/sbin/installer -dumplog -verbose -pkg "$XCODE_DEVELOPER_ROOT/../Resources/Packages/$pkg" -target /
log "Installed $pkg"
else
log "Not installing $pkg because it doesn't exist."
fi
done
fi
log "Executing '$SUDO xcode-select -s $XCODE_DEVELOPER_ROOT'"
$SUDO xcode-select -s $XCODE_DEVELOPER_ROOT
log "Clearing xcrun cache..."
xcrun -k
ok "Xcode $XCODE_VERSION provisioned"
}
function install_coresimulator ()
{
local XCODE_DEVELOPER_ROOT
local CORESIMULATOR_PKG
local CORESIMULATOR_PKG_DIR
local XCODE_ROOT
local TARGET_CORESIMULATOR_VERSION
local CURRENT_CORESIMULATOR_VERSION
XCODE_DEVELOPER_ROOT=$(grep XCODE_DEVELOPER_ROOT= Make.config | sed 's/.*=//')
XCODE_ROOT=$(dirname "$(dirname "$XCODE_DEVELOPER_ROOT")")
CORESIMULATOR_PKG=$XCODE_ROOT/Contents/Resources/Packages/XcodeSystemResources.pkg
if ! test -f "$CORESIMULATOR_PKG"; then
warn "Could not find XcodeSystemResources.pkg (which contains CoreSimulator.framework) in $XCODE_DEVELOPER_ROOT ($CORESIMULATOR_PKG doesn't exist)."
return
fi
# Get the CoreSimulator.framework version from our Xcode
# Extract the .pkg to get the pkg's PackageInfo file, which contains the CoreSimulator.framework version.
CORESIMULATOR_PKG_DIR=$(mktemp -d)
pkgutil --expand "$CORESIMULATOR_PKG" "$CORESIMULATOR_PKG_DIR/extracted"
if ! TARGET_CORESIMULATOR_VERSION=$(xmllint --xpath 'string(/pkg-info/bundle-version/bundle[@id="com.apple.CoreSimulator"]/@CFBundleShortVersionString)' "$CORESIMULATOR_PKG_DIR/extracted/PackageInfo"); then
rm -rf "$CORESIMULATOR_PKG_DIR"
warn "Failed to look up the CoreSimulator version of $XCODE_DEVELOPER_ROOT"
return
fi
rm -rf "$CORESIMULATOR_PKG_DIR"
# Get the CoreSimulator.framework currently installed
local CURRENT_CORESIMULATOR_PATH=/Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/CoreSimulator
local CURRENT_CORESIMULATOR_VERSION=0.0
if test -f "$CURRENT_CORESIMULATOR_PATH"; then
CURRENT_CORESIMULATOR_VERSION=$(otool -L $CURRENT_CORESIMULATOR_PATH | grep "$CURRENT_CORESIMULATOR_PATH.*current version" | sed -e 's/.*current version//' -e 's/)//' -e 's/[[:space:]]//g')
fi
# Either version may be composed of either 2 or 3 numbers.
# We only care about the first two, so strip off the 3rd number if it exists.
# shellcheck disable=SC2001
CURRENT_CORESIMULATOR_VERSION=$(echo "$CURRENT_CORESIMULATOR_VERSION" | sed 's/\([0-9]*[.][0-9]*\).*/\1/')
# shellcheck disable=SC2001
TARGET_CORESIMULATOR_VERSION=$(echo "$TARGET_CORESIMULATOR_VERSION" | sed 's/\([0-9]*[.][0-9]*\).*/\1/')
# Compare versions to see if we got what we need
if [[ x"$TARGET_CORESIMULATOR_VERSION" == x"$CURRENT_CORESIMULATOR_VERSION" ]]; then
log "Found CoreSimulator.framework $CURRENT_CORESIMULATOR_VERSION (exactly $TARGET_CORESIMULATOR_VERSION is recommended)"
return
fi
if test -z $PROVISION_XCODE; then
# This is not a failure for now, until this logic has been tested thoroughly
warn "You should have exactly CoreSimulator.framework version $TARGET_CORESIMULATOR_VERSION (found $CURRENT_CORESIMULATOR_VERSION). Execute './system-dependencies.sh --provision-xcode' to install the expected version."
return
fi
# Just installing the package won't work, because there's a version check somewhere
# that prevents the macOS installer from downgrading, so remove the existing
# CoreSimulator.framework manually first.
log "Installing CoreSimulator.framework $CURRENT_CORESIMULATOR_VERSION..."
$SUDO rm -Rf /Library/Developer/PrivateFrameworks/CoreSimulator.framework
$SUDO installer -pkg "$CORESIMULATOR_PKG" -target /
CURRENT_CORESIMULATOR_VERSION=$(otool -L $CURRENT_CORESIMULATOR_PATH | grep "$CURRENT_CORESIMULATOR_PATH.*current version" | sed -e 's/.*current version//' -e 's/)//' -e 's/[[:space:]]//g')
log "Installed CoreSimulator.framework $CURRENT_CORESIMULATOR_VERSION successfully."
}
function check_specific_xcode () {
local XCODE_DEVELOPER_ROOT=`grep XCODE$1_DEVELOPER_ROOT= Make.config | sed 's/.*=//'`
local XCODE_VERSION=`grep XCODE$1_VERSION= Make.config | sed 's/.*=//'`
local XCODE_ROOT=$(dirname `dirname $XCODE_DEVELOPER_ROOT`)
local ENABLE_XAMARIN=$(grep -s ^ENABLE_XAMARIN= Make.config.local configure.inc | sed 's/.*=//')
if ! test -d $XCODE_DEVELOPER_ROOT; then
if ! test -z $PROVISION_XCODE; then
if ! test -z $ENABLE_XAMARIN; then
install_specific_xcode "$1" "$XCODE_DEVELOPER_ROOT"
else
fail "Automatic provisioning of Xcode is only supported for provisioning internal build bots."
fail "Please download and install Xcode $XCODE_VERSION here: https://developer.apple.com/downloads/index.action?name=Xcode"
fi
else
fail "You must install Xcode ($XCODE_VERSION) in $XCODE_ROOT. You can download Xcode $XCODE_VERSION here: https://developer.apple.com/downloads/index.action?name=Xcode"
fi
return
else
if is_at_least_version $XCODE_VERSION 5.0; then
if ! $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -license check >/dev/null 2>&1; then
if ! test -z $PROVISION_XCODE; then
$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -license accept
else
fail "The license for Xcode $XCODE_VERSION has not been accepted. Execute '$SUDO $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild' to review the license and accept it."
return
fi
fi
fi
run_xcode_first_launch "$XCODE_VERSION" "$XCODE_DEVELOPER_ROOT"
fi
local XCODE_ACTUAL_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' "$XCODE_DEVELOPER_ROOT/../version.plist"`
# this is a hard match, having 4.5 when requesting 4.4 is not OK (but 4.4.1 is OK)
if [[ ! "x$XCODE_ACTUAL_VERSION" =~ "x$XCODE_VERSION" ]]; then
fail "You must install Xcode $XCODE_VERSION in $XCODE_ROOT (found $XCODE_ACTUAL_VERSION). You can download Xcode $XCODE_VERSION here: https://developer.apple.com/downloads/index.action?name=Xcode";
return
fi
if test -z "$1"; then
local XCODE_SELECT=$(xcode-select -p)
if [[ "x$XCODE_SELECT" != "x$XCODE_DEVELOPER_ROOT" ]]; then
if ! test -z $PROVISION_XCODE; then
log "Executing '$SUDO xcode-select -s $XCODE_DEVELOPER_ROOT'"
$SUDO xcode-select -s $XCODE_DEVELOPER_ROOT
log "Clearing xcrun cache..."
xcrun -k
else
fail "'xcode-select -p' does not point to $XCODE_DEVELOPER_ROOT, it points to $XCODE_SELECT. Execute '$SUDO xcode-select -s $XCODE_DEVELOPER_ROOT' to fix."
fi
fi
fi
ok "Found Xcode $XCODE_ACTUAL_VERSION in $XCODE_ROOT"
}
function check_xcode () {
if ! test -z $IGNORE_XCODE; then return; fi
# must have latest Xcode in /Applications/Xcode<version>.app
check_specific_xcode
install_coresimulator
check_specific_xcode "94"
local XCODE_DEVELOPER_ROOT=`grep ^XCODE_DEVELOPER_ROOT= Make.config | sed 's/.*=//'`
local IOS_SDK_VERSION=`grep ^IOS_SDK_VERSION= Make.config | sed 's/.*=//'`
local OSX_SDK_VERSION=`grep ^OSX_SDK_VERSION= Make.config | sed 's/.*=//'`
local WATCH_SDK_VERSION=`grep ^WATCH_SDK_VERSION= Make.config | sed 's/.*=//'`
local TVOS_SDK_VERSION=`grep ^TVOS_SDK_VERSION= Make.config | sed 's/.*=//'`
local D=$XCODE_DEVELOPER_ROOT/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator${IOS_SDK_VERSION}.sdk
if test ! -d $D -a -z "$FAIL"; then
fail "The directory $D does not exist. If you've updated the Xcode location it means you also need to update IOS_SDK_VERSION in Make.config."
fi
local D=$XCODE_DEVELOPER_ROOT/Platforms/MacOSX.platform/Developer/SDKs/MacOSX${OSX_SDK_VERSION}.sdk
if test ! -d $D -a -z "$FAIL"; then
fail "The directory $D does not exist. If you've updated the Xcode location it means you also need to update OSX_SDK_VERSION in Make.config."
fi
local D=$XCODE_DEVELOPER_ROOT/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS${TVOS_SDK_VERSION}.sdk
if test ! -d $D -a -z "$FAIL"; then
fail "The directory $D does not exist. If you've updated the Xcode location it means you also need to update TVOS_SDK_VERSION in Make.config."
fi
local D=$XCODE_DEVELOPER_ROOT/Platforms/WatchOS.platform/Developer/SDKs/WatchOS${WATCH_SDK_VERSION}.sdk
if test ! -d $D -a -z "$FAIL"; then
fail "The directory $D does not exist. If you've updated the Xcode location it means you also need to update WATCH_SDK_VERSION in Make.config."
fi
}
function check_mono () {
if ! test -z $IGNORE_MONO; then return; fi
MONO_VERSION_FILE=/Library/Frameworks/Mono.framework/Versions/Current/VERSION
if ! /Library/Frameworks/Mono.framework/Commands/mono --version 2>/dev/null >/dev/null; then
if ! test -z $PROVISION_MONO; then
install_mono
else
fail "You must install the Mono MDK. Download URL: $MIN_MONO_URL"
return
fi
elif ! test -e $MONO_VERSION_FILE; then
if ! test -z $PROVISION_MONO; then
install_mono
else
fail "Could not find Mono's VERSION file, you must install the Mono MDK. Download URL: $MIN_MONO_URL"
return
fi
fi
MIN_MONO_VERSION=`grep MIN_MONO_VERSION= Make.config | sed 's/.*=//'`
MAX_MONO_VERSION=`grep MAX_MONO_VERSION= Make.config | sed 's/.*=//'`
ACTUAL_MONO_VERSION=`cat $MONO_VERSION_FILE`
if ! is_at_least_version $ACTUAL_MONO_VERSION $MIN_MONO_VERSION; then
if ! test -z $PROVISION_MONO; then
install_mono
ACTUAL_MONO_VERSION=`cat $MONO_VERSION_FILE`
else
MIN_MONO_URL=$(grep ^MIN_MONO_URL= Make.config | sed 's/.*=//')
fail "You must have at least Mono $MIN_MONO_VERSION, found $ACTUAL_MONO_VERSION. Download URL: $MIN_MONO_URL"
return
fi
elif [[ "$ACTUAL_MONO_VERSION" == "$MAX_MONO_VERSION" ]]; then
: # this is ok
elif is_at_least_version $ACTUAL_MONO_VERSION $MAX_MONO_VERSION; then
if ! test -z $PROVISION_MONO; then
install_mono
ACTUAL_MONO_VERSION=`cat $MONO_VERSION_FILE`
else
fail "Your mono version is too new, max version is $MAX_MONO_VERSION, found $ACTUAL_MONO_VERSION."
fail "You may edit Make.config and change MAX_MONO_VERSION to your actual version to continue the"
fail "build (unless you're on a release branch). Once the build completes successfully, please"
fail "commit the new MAX_MONO_VERSION value."
fail "Alternatively you can ${COLOR_MAGENTA}export IGNORE_MONO=1${COLOR_RED} to skip this check."
return
fi
fi
if ! which mono > /dev/null 2>&1; then
fail "Mono is not in PATH. You must add '/Library/Frameworks/Mono.framework/Versions/Current/Commands' to PATH. Current PATH is: $PATH".
return
fi
ok "Found Mono $ACTUAL_MONO_VERSION (at least $MIN_MONO_VERSION and not more than $MAX_MONO_VERSION is required)"
}
function install_autoconf () {
if ! brew --version >& /dev/null; then
fail "Asked to install autoconf, but brew is not installed."
return
fi
brew install autoconf
}
function install_libtool () {
if ! brew --version >& /dev/null; then
fail "Asked to install libtool, but brew is not installed."
return
fi
brew install libtool
}
function install_automake () {
if ! brew --version >& /dev/null; then
fail "Asked to install automake, but brew is not installed."
return
fi
brew install automake
}
function check_autotools () {
if ! test -z $IGNORE_AUTOTOOLS; then return; fi
IFStmp=$IFS
IFS='
'
if AUTOCONF_VERSION=($(autoconf --version 2>/dev/null)); then
ok "Found ${AUTOCONF_VERSION[0]} (no specific version is required)"
elif ! test -z $PROVISION_AUTOTOOLS; then
install_autoconf
else
fail "You must install autoconf, read the README.md for instructions"
fi
if ! LIBTOOL=$(which glibtool 2>/dev/null); then
LIBTOOL=$(which libtool)
fi
if LIBTOOL_VERSION=($($LIBTOOL --version 2>/dev/null )); then
ok "Found ${LIBTOOL_VERSION[0]} (no specific version is required)"
elif ! test -z $PROVISION_AUTOTOOLS; then
install_libtool
else
fail "You must install libtool, read the README.md for instructions"
fi
if AUTOMAKE_VERSION=($(automake --version 2>/dev/null)); then
ok "Found ${AUTOMAKE_VERSION[0]} (no specific version is required)"
elif ! test -z $PROVISION_AUTOTOOLS; then
install_automake
else
fail "You must install automake, read the README.md for instructions"
fi
IFS=$IFS_tmp
}
function check_visual_studio () {
if ! test -z $IGNORE_VISUAL_STUDIO; then return; fi
VS="/Applications/Visual Studio.app"
local VS_URL=`grep MIN_VISUAL_STUDIO_URL= Make.config | sed 's/.*=//'`
if ! test -d "$VS"; then
if ! test -z $PROVISION_VS; then
install_visual_studio
else
fail "You must install Visual Studio, from http://www.monodevelop.com/download/"
fi
return
fi
MIN_VISUAL_STUDIO_VERSION=`grep MIN_VISUAL_STUDIO_VERSION= Make.config | sed 's/.*=//'`
MAX_VISUAL_STUDIO_VERSION=`grep MAX_VISUAL_STUDIO_VERSION= Make.config | sed 's/.*=//'`
VS_ACTUAL_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' "$VS/Contents/Info.plist"`
if ! is_at_least_version $VS_ACTUAL_VERSION $MIN_VISUAL_STUDIO_VERSION; then
if ! test -z $PROVISION_VS; then
install_visual_studio
VS_ACTUAL_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' "$VS/Contents/Info.plist"`
else
fail "You must have at least Visual Studio $MIN_VISUAL_STUDIO_VERSION (found $VS_ACTUAL_VERSION). Download URL: $VS_URL"
fi
return
elif [[ "$VS_ACTUAL_VERSION" == "$MAX_VISUAL_STUDIO_VERSION" ]]; then
: # this is ok
elif is_at_least_version $VS_ACTUAL_VERSION $MAX_VISUAL_STUDIO_VERSION; then
if ! test -z $PROVISION_VS; then
install_visual_studio
VS_ACTUAL_VERSION=`/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' "$VS/Contents/Info.plist"`
else
fail "Your Visual Studio version is too new, max version is $MAX_VISUAL_STUDIO_VERSION, found $VS_ACTUAL_VERSION."
fail "You may edit Make.config and change MAX_VISUAL_STUDIO_VERSION to your actual version to continue the"
fail "build (unless you're on a release branch). Once the build completes successfully, please"
fail "commit the new MAX_VISUAL_STUDIO_VERSION value."
fail "Alternatively you can download an older version from:"
fail " $VS_URL,"
fail "or you can ${COLOR_MAGENTA}export IGNORE_VISUAL_STUDIO=1${COLOR_RED} to skip this check."
fi
return
fi
ok "Found Visual Studio $VS_ACTUAL_VERSION (at least $MIN_VISUAL_STUDIO_VERSION and not more than $MAX_VISUAL_STUDIO_VERSION is required)"
}
function check_osx_version () {
if ! test -z $IGNORE_OSX; then return; fi
MIN_OSX_BUILD_VERSION=`grep MIN_OSX_BUILD_VERSION= Make.config | sed 's/.*=//'`
ACTUAL_OSX_VERSION=$(sw_vers -productVersion)
if ! is_at_least_version $ACTUAL_OSX_VERSION $MIN_OSX_BUILD_VERSION; then
fail "You must have at least OSX $MIN_OSX_BUILD_VERSION (found $ACTUAL_OSX_VERSION)"
return
fi
ok "Found OSX $ACTUAL_OSX_VERSION (at least $MIN_OSX_BUILD_VERSION is required)"
}
function install_cmake () {
if ! brew --version >& /dev/null; then
fail "Asked to install cmake, but brew is not installed."
return
fi
brew install cmake
}
function check_cmake () {
if ! test -z $IGNORE_CMAKE; then return; fi
local MIN_CMAKE_VERSION=`grep MIN_CMAKE_VERSION= Make.config | sed 's/.*=//'`
local CMAKE_URL=`grep CMAKE_URL= Make.config | sed 's/.*=//'`
if ! cmake --version &> /dev/null; then
if ! test -z $PROVISION_CMAKE; then
install_cmake
else
fail "You must install CMake ($CMAKE_URL)"
fi
return
fi
ACTUAL_CMAKE_VERSION=$(cmake --version | grep "cmake version" | sed 's/cmake version //')
if ! is_at_least_version $ACTUAL_CMAKE_VERSION $MIN_CMAKE_VERSION; then
fail "You must have at least CMake $MIN_CMAKE_VERSION (found $ACTUAL_CMAKE_VERSION)"
return
fi
ok "Found CMake $ACTUAL_CMAKE_VERSION (at least $MIN_CMAKE_VERSION is required)"
}
function install_7z () {
if ! brew --version >& /dev/null; then
fail "Asked to install 7z, but brew is not installed."
return
fi
brew install p7zip
}
function check_7z () {
if ! test -z $IGNORE_7Z; then return; fi
if ! 7z &> /dev/null; then
if ! test -z $PROVISION_7Z; then
install_7z
else
fail "You must install 7z (no specific version is required)"
fi
return
fi
ok "Found 7z (no specific version is required)"
}
function check_homebrew ()
{
if ! test -z $IGNORE_HOMEBREW; then return; fi
IFStmp=$IFS
IFS='
'
if HOMEBREW_VERSION=($(brew --version 2>/dev/null)); then
ok "Found Homebrew ($HOMEBREW_VERSION)"
elif ! test -z $PROVISION_HOMEBREW; then
log "Installing Homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
HOMEBREW_VERSION=($(brew --version 2>/dev/null))
log "Installed Homebrew ($HOMEBREW_VERSION)"
else
warn "Could not find Homebrew. Homebrew is required to auto-provision some dependencies (autotools, cmake), but not required otherwise."
fi
IFS=$IFS_tmp
}
function install_objective_sharpie () {
local SHARPIE_URL=$(grep MIN_SHARPIE_URL= Make.config | sed 's/.*=//')
local MIN_SHARPIE_VERSION=$(grep MIN_SHARPIE_VERSION= Make.config | sed 's/.*=//')
if test -z "$SHARPIE_URL"; then
fail "No MIN_SHARPIE_URL set in Make.config, cannot provision Objective Sharpie"
return
fi
mkdir -p "$PROVISION_DOWNLOAD_DIR"
log "Downloading Objective Sharpie $MIN_SHARPIE_VERSION from $SHARPIE_URL to $PROVISION_DOWNLOAD_DIR..."
local SHARPIE_NAME=$(basename "$SHARPIE_URL")
local SHARPIE_PKG=$PROVISION_DOWNLOAD_DIR/$SHARPIE_NAME
curl -L "$SHARPIE_URL" > "$SHARPIE_PKG"
log "Installing Objective-Sharpie $MIN_SHARPIE_VERSION from $SHARPIE_URL..."
sudo installer -pkg "$SHARPIE_PKG" -target /
rm -f "$SHARPIE_PKG"
}
function check_objective_sharpie () {
if ! test -z $IGNORE_SHARPIE; then return; fi
SHARPIE_URL=$(grep MIN_SHARPIE_URL= Make.config | sed 's/.*=//')
MIN_SHARPIE_VERSION=$(grep MIN_SHARPIE_VERSION= Make.config | sed 's/.*=//')
MAX_SHARPIE_VERSION=$(grep MAX_SHARPIE_VERSION= Make.config | sed 's/.*=//')
if ! test -f /Library/Frameworks/ObjectiveSharpie.framework/Versions/Current/Version; then
if ! test -z "$PROVISION_SHARPIE"; then
install_objective_sharpie
ACTUAL_SHARPIE_VERSION=$(cat /Library/Frameworks/ObjectiveSharpie.framework/Versions/Current/Version)
else
if test -z $OPTIONAL_SHARPIE; then
fail "You must install Objective Sharpie, at least $MIN_SHARPIE_VERSION (no Objective Sharpie found). You can download it from $SHARPIE_URL"
fail "Alternatively you can ${COLOR_MAGENTA}export IGNORE_SHARPIE=1${COLOR_RED} to skip this check."
else
warn "You do not have Objective Sharpie installed (should be at least $MIN_SHARPIE_VERSION). You can download it from $SHARPIE_URL"
fi
return
fi
else
ACTUAL_SHARPIE_VERSION=$(cat /Library/Frameworks/ObjectiveSharpie.framework/Versions/Current/Version)
if ! is_at_least_version "$ACTUAL_SHARPIE_VERSION" "$MIN_SHARPIE_VERSION"; then
if ! test -z "$PROVISION_SHARPIE"; then
install_objective_sharpie
ACTUAL_SHARPIE_VERSION=$(cat /Library/Frameworks/ObjectiveSharpie.framework/Versions/Current/Version)
else
if test -z $OPTIONAL_SHARPIE; then
fail "You must have at least Objective Sharpie $MIN_SHARPIE_VERSION, found $ACTUAL_SHARPIE_VERSION. You can download it from $SHARPIE_URL"
fail "Alternatively you can ${COLOR_MAGENTA}export IGNORE_SHARPIE=1${COLOR_RED} to skip this check."
else
warn "You do not have have at least Objective Sharpie $MIN_SHARPIE_VERSION (found $ACTUAL_SHARPIE_VERSION). You can download it from $SHARPIE_URL"
fi
return
fi
elif [[ "$ACTUAL_SHARPIE_VERSION" == "$MAX_SHARPIE_VERSION" ]]; then
: # this is ok
elif is_at_least_version "$ACTUAL_SHARPIE_VERSION" "$MAX_SHARPIE_VERSION"; then
if ! test -z "$PROVISION_SHARPIE"; then
install_objective_sharpie
ACTUAL_SHARPIE_VERSION=$(cat /Library/Frameworks/ObjectiveSharpie.framework/Versions/Current/Version)
else
if test -z $OPTIONAL_SHARPIE; then
fail "Your Objective Sharpie version is too new, max version is $MAX_SHARPIE_VERSION, found $ACTUAL_SHARPIE_VERSION. We recommend you download $SHARPIE_URL"
fail "Alternatively you can ${COLOR_MAGENTA}export IGNORE_SHARPIE=1${COLOR_RED} to skip this check."
else
warn "You do not have have at most Objective Sharpie $MAX_SHARPIE_VERSION (found $ACTUAL_SHARPIE_VERSION). We recommend you download $SHARPIE_URL"
fi
return
fi
fi
fi
if test -z $OPTIONAL_SHARPIE; then
ok "Found Objective Sharpie $ACTUAL_SHARPIE_VERSION (at least $MIN_SHARPIE_VERSION and not more than $MAX_SHARPIE_VERSION is required)"
else
ok "Found Objective Sharpie $ACTUAL_SHARPIE_VERSION (at least $MIN_SHARPIE_VERSION and not more than $MAX_SHARPIE_VERSION is recommended)"
fi
}
function check_simulators ()
{
if test -n "$IGNORE_SIMULATORS"; then return; fi
local EXTRA_SIMULATORS
local XCODE
EXTRA_SIMULATORS=$(grep ^EXTRA_SIMULATORS= Make.config | sed 's/.*=//')
XCODE=$(grep ^XCODE_DEVELOPER_ROOT= Make.config | sed 's/.*=//')/../..
if ! make -C tools/siminstaller >/dev/null; then
warn "Can't check if simulators are available, because siminstaller failed to build."
return
fi
if ! test -d "$XCODE"; then
# can't test unless Xcode is present
warn "Can't check if simulators are available unless Xcode is already installed."
return
fi
IFS=', ' read -r -a SIMS <<< "$EXTRA_SIMULATORS"
arraylength=${#SIMS[@]}
for (( i=1; i<arraylength+1; i++ )); do
SIMS[$i-1]="--install=${SIMS[$i-1]}"
done
if ! FAILED_SIMULATORS=$(mono --debug tools/siminstaller/bin/Debug/siminstaller.exe -q --xcode "$XCODE" --only-check "${SIMS[@]}"); then
if ! test -z $PROVISION_SIMULATORS; then
mono --debug tools/siminstaller/bin/Debug/siminstaller.exe -q --xcode "$XCODE" "${SIMS[@]}"
ok "Extra simulators installed successfully: '${FAILED_SIMULATORS//$'\n'/', '}'"
else
if test -z $OPTIONAL_SIMULATORS; then
fail "The simulators '${FAILED_SIMULATORS//$'\n'/', '}' are not installed or need to be upgraded."
else
warn "The simulators '${FAILED_SIMULATORS//$'\n'/', '}' are not installed or should be upgraded."
fi
fi
else
ok "Found all extra simulators: ${EXTRA_SIMULATORS// /, }"
fi
}
echo "Checking system..."
check_osx_version
check_xcode
check_homebrew
check_autotools
check_mono
check_visual_studio
check_cmake
check_7z
check_objective_sharpie
check_simulators
if test -z $FAIL; then
echo "System check succeeded"
else
echo "System check failed"
exit 1
fi