X Tutup
Skip to content

Commit c8f3324

Browse files
authored
ci: make arm64 macos test cleanup more resilient (electron#30495)
1 parent 60650ab commit c8f3324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ step-maybe-cleanup-arm64-mac: &step-maybe-cleanup-arm64-mac
219219
killall Safari || echo "No Safari processes left running"
220220
rm -rf ~/Library/Application\ Support/Electron*
221221
rm -rf ~/Library/Application\ Support/electron*
222-
security delete-generic-password -l "Chromium Safe Storage"
223-
security delete-generic-password -l "Electron Test Main Safe Storage"
222+
security delete-generic-password -l "Chromium Safe Storage" || echo "✓ Keychain does not contain password from tests"
223+
security delete-generic-password -l "Electron Test Main Safe Storage" || echo "✓ Keychain does not contain password from tests"
224224
elif [ "$TARGET_ARCH" == "arm" ] || [ "$TARGET_ARCH" == "arm64" ]; then
225225
XVFB=/usr/bin/Xvfb
226226
/sbin/start-stop-daemon --stop --exec $XVFB || echo "Xvfb not running"

0 commit comments

Comments
 (0)
X Tutup