mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
27 lines
793 B
Bash
27 lines
793 B
Bash
#!/bin/sh
|
|
source ~/utils/utils.sh
|
|
source ~/utils/xamarin-utils.sh
|
|
|
|
VSMAC_VERSION=$(get_toolset_value '.xamarin.vsmac')
|
|
VSMAC_DOWNLOAD_URL=$(buildVSMacDownloadUrl $VSMAC_VERSION)
|
|
|
|
TMPMOUNT=`/usr/bin/mktemp -d /tmp/visualstudio.XXXX`
|
|
TMPMOUNT_DOWNLOADS="$TMPMOUNT/downloads"
|
|
mkdir $TMPMOUNT_DOWNLOADS
|
|
|
|
download_with_retries $VSMAC_DOWNLOAD_URL $TMPMOUNT_DOWNLOADS
|
|
|
|
echo "Mounting Visual studio..."
|
|
VISUAL_STUDIO_NAME=${VSMAC_DOWNLOAD_URL##*/}
|
|
hdiutil attach "$TMPMOUNT_DOWNLOADS/$VISUAL_STUDIO_NAME" -mountpoint "$TMPMOUNT"
|
|
|
|
echo "Moving Visual Studio to /Applications/..."
|
|
pushd $TMPMOUNT
|
|
tar cf - "./Visual Studio.app" | tar xf - -C /Applications/
|
|
|
|
echo "Launching vstools..."
|
|
/Applications/Visual\ Studio.app/Contents/MacOS/vstool
|
|
|
|
popd
|
|
sudo hdiutil detach "$TMPMOUNT"
|
|
sudo rm -rf "$TMPMOUNT" |