mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* Update Software Report to support azcopy output * Update util.sh and related scripts * Remove rosetta test from the script * Update mono script * clean up * remove condition from install pipx script * Update scripts according to comments --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
30 lines
660 B
Bash
30 lines
660 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-xcode-simulators.sh
|
|
## Desc: Install Xcode simulators
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
# Downloading and installing simulators
|
|
SIMS_TO_INSTALL=(
|
|
"8.4"
|
|
"9.0"
|
|
"9.1"
|
|
"9.2"
|
|
"9.3"
|
|
"10.0"
|
|
"10.1"
|
|
"10.2"
|
|
"10.3"
|
|
)
|
|
|
|
for sim_version in ${SIMS_TO_INSTALL[@]}
|
|
do
|
|
echo "Installing iOS $sim_version ..."
|
|
sudo xcversion simulators --install="iOS ${sim_version}"
|
|
echo "Successfuly installed iOS $sim_version ..."
|
|
done
|
|
|
|
echo "Done installing simulator runtimes."
|