mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 20:58:32 +08:00
* [macOS] Fail Pester tests on error * return it back * [macOS] Pester tests fail on error * some tests were moved * appcenter cli moved * openssl separate describe * added new tests for java * moved stack from haskell * invoke tests to stack * xamarin added tests sources * mongo tests fix * ndk path * xamarin-android-ndk-tests removed * fix nitpicks * added new filename for XamarinNDK * AzCopy Describe change * added azcopy C correct. * android additional_tools tests * remove null elements from massive * added new lines for verification macos 10.13 * add Android Tests for mac, not for linux
17 lines
439 B
Bash
Executable File
17 lines
439 B
Bash
Executable File
#!/bin/bash -e -o pipefail
|
|
|
|
source ~/utils/utils.sh
|
|
source ~/utils/invoke-tests.sh
|
|
|
|
AZCOPY_DOWNLOAD_URL="https://aka.ms/downloadazcopy-v10-mac"
|
|
|
|
download_with_retries $AZCOPY_DOWNLOAD_URL "/tmp" "azcopy.zip"
|
|
unzip /tmp/azcopy.zip -d azcopy
|
|
AZCOPY_EXTRACTED=$(echo azcopy/azcopy*)
|
|
cp "$AZCOPY_EXTRACTED/azcopy" "/usr/local/bin/azcopy"
|
|
chmod +x "/usr/local/bin/azcopy"
|
|
|
|
echo "Done, cleaning up"
|
|
rm -rf azcopy*
|
|
|
|
invoke_tests "Common" "AzCopy" |