swift build не может записать файлы сборки - PullRequest
1 голос
/ 25 апреля 2019

Запуск swift build на любом пакете завершается ошибкой со следующим выводом:

[1/1] Compiling Swift Module 'SynchronousNetworking' (3 sources)
<unknown>:0: error: failed writing record '_pthread_rwlockattr_t.h-15446MBE1AZWP': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/WP/_pthread_rwlockattr_t.h-15446MBE1AZWP-temp-f543b829
<unknown>:0: error: failed writing record 'uuid.h-3RIUEBNVXME9Q': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/9Q/uuid.h-3RIUEBNVXME9Q-temp-27e1a4c7
<unknown>:0: error: failed writing record '_u_int16_t.h-34I7NDL9MUDL': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/DL/_u_int16_t.h-34I7NDL9MUDL-temp-be9fdd22
<unknown>:0: error: failed writing record 'fmaintrin.h-4B9WQ55UKX7V': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/7V/fmaintrin.h-4B9WQ55UKX7V-temp-f26ea012
<unknown>:0: error: failed writing record 'CTTextTab.h-X47FKBQ1RXGU': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/GU/CTTextTab.h-X47FKBQ1RXGU-temp-d4fc8399
<unknown>:0: error: failed writing record 'FoundationOverlayShims.h-2XZL6DVCNMY82': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/82/FoundationOverlayShims.h-2XZL6DVCNMY82-temp-6d359744
<unknown>:0: error: failed writing record '_uintptr_t.h-1DR8717NVFXXK': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/XK/_uintptr_t.h-1DR8717NVFXXK-temp-8085ec94
<unknown>:0: error: failed writing record '_ctype.h-B4CEWHC0EQSN': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/SN/_ctype.h-B4CEWHC0EQSN-temp-f0a309d3
<unknown>:0: error: failed writing record 'poll.h-1QKTQ62SG1WMU': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/MU/poll.h-1QKTQ62SG1WMU-temp-d98445b7
<unknown>:0: error: writing index record file: failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/RT/CoreGraphics.swiftmodule-KUR2MKSFKTRT-temp-3196c465
<unknown>:0: error: failed writing record 'IOReturn.h-1M1CBYHRWHC0P': failed to create temporary file: /private/var/tmp/ankafs.0/.build/x86_64-apple-macosx/debug/index/store/v5/records/0P/IOReturn.h-1M1CBYHRWHC0P-temp-f788a88d

Вывод ls в каталоге проекта:

drwxrwxrwx  11 anka  staff   352 Apr 25 02:21 .
drwxrwxrwx   4 root  wheel   128 Apr 25 01:00 ..
drwxrwxrwx   3 anka  staff    96 Apr 23 04:58 .circleci
drwxrwxrwx  12 anka  staff   384 Apr 23 04:58 .git
-rwxrwxrwx   1 anka  staff    41 Apr 23 04:58 .gitignore
-rwxrwxrwx   1 anka  staff  1075 Apr 23 04:58 LICENSE
-rwxrwxrwx   1 anka  staff   505 Apr 23 04:58 Package.swift
-rwxrwxrwx   1 anka  staff   720 Apr 23 04:58 README.md
drwxrwxrwx   3 anka  staff    96 Apr 23 04:58 Sources
drwxrwxrwx   4 anka  staff   128 Apr 23 04:58 Tests
-rwxrwxrwx   1 anka  staff   475 Apr 23 04:58 build.sh

Что показывает, что он имеет rwx для всех групп пользователей.

Стоит также отметить, что только первая swift build приводит к этой ошибке. Последующие сборки завершаются успешно, пока каталог .build не будет удален, а затем это происходит снова, каждый раз при сбое для другого набора файлов.

Команда build выполняется внутри виртуальной машины anka , но я предполагаю, что это просто проблема с разрешениями, не имеющая ничего общего с тем, что она запускается внутри виртуальной машины.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...