[jenkins] Clean keystore on bots before running tests (#3754)

Because if invalid data gets into the store then some unit tests
will always fail on that particular bot.

Fix https://github.com/xamarin/maccore/issues/640
This commit is contained in:
Sebastien Pouliot 2018-03-15 12:25:53 -05:00 коммит произвёл Rolf Bjarne Kvinge
Родитель 61ec52009e
Коммит fb322c4d15
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -23,6 +23,9 @@ security unlock-keychain -p `cat ~/.config/keychain`
echo "Increase keychain unlock timeout"
security set-keychain-settings -lut 7200
# clean mono keypairs (used in tests)
rm -rf ~/.config/.mono/keypairs/
# Run tests
make -C tests jenkins