[jenkins] Ignore the 7z dependency when running tests on older macOS versions.

We don't need 7z installed to just run the tests.
This commit is contained in:
Rolf Bjarne Kvinge 2019-05-29 12:56:44 +02:00
Родитель b5958e89c4
Коммит 2ac3008237
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ cd mac-test-package
COUNTER=0
while [[ $COUNTER -lt 5 ]]; do
EC=0
./system-dependencies.sh --provision-mono --ignore-autotools --ignore-xamarin-studio --ignore-xcode --ignore-osx --ignore-cmake --ignore-simulators || EC=$?
./system-dependencies.sh --provision-mono --ignore-autotools --ignore-xamarin-studio --ignore-xcode --ignore-osx --ignore-cmake --ignore-simulators --ignore-7z || EC=$?
if [[ $EC -eq 56 ]]; then
# Sometimes we get spurious "curl: (56) SSLRead() return error -9806" errors. Trying again usually works, so lets try again a few more times.
# https://github.com/xamarin/maccore/issues/1098