The Swift Package Index logo.Swift Package Index

Build Information

Failed to build ExtendedAttributes, reference 1.0.0 (075e54), with Swift 6.3 for Android on 11 Apr 2026 01:39:41 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/amosavian/ExtendedAttributes.git
Reference: 1.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/amosavian/ExtendedAttributes
 * tag               1.0.0      -> FETCH_HEAD
HEAD is now at 075e545 Added readme badges for pods
Cloned https://github.com/amosavian/ExtendedAttributes.git
Revision (git rev-parse @):
075e545e2f128482fa377c825bfa0e4f0e266419
SUCCESS checkout https://github.com/amosavian/ExtendedAttributes.git at 1.0.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/amosavian/ExtendedAttributes.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
[3/4] Emitting module ExtendedAttributes
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:14:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 12 | public extension URL {
 13 |     /// Checks extended attribute has value
 14 |     public func hasExtendedAttribute(forName name: String) -> Bool {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 15 |         guard isFileURL else {
 16 |             return false
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 23 |
 24 |     /// Get extended attribute.
 25 |     public func extendedAttribute(forName name: String) throws -> Data {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 26 |         try checkFileURL()
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |
 48 |     /// Value of extended attribute.
 49 |     public func extendedAttributeValue<T>(forName name: String) throws -> T {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         try checkFileURL()
 51 |         let data = try extendedAttribute(forName: name)
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 58 |
 59 |     /// Set extended attribute.
 60 |     public func setExtendedAttribute(data: Data, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 61 |         try checkFileURL()
 62 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:71:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 69 |
 70 |     /// Set extended attribute.
 71 |     public func setExtendedAttribute<T>(value: T, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 72 |         try checkFileURL()
 73 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:84:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 82 |
 83 |     /// Remove extended attribute.
 84 |     public func removeExtendedAttribute(forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |         try checkFileURL()
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:93:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 91 |
 92 |     /// Get list of all extended attributes.
 93 |     public func listExtendedAttributes() throws -> [String] {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
[4/4] Compiling ExtendedAttributes ExtendedAttributes.swift
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:14:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 12 | public extension URL {
 13 |     /// Checks extended attribute has value
 14 |     public func hasExtendedAttribute(forName name: String) -> Bool {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 15 |         guard isFileURL else {
 16 |             return false
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:25:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 23 |
 24 |     /// Get extended attribute.
 25 |     public func extendedAttribute(forName name: String) throws -> Data {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 26 |         try checkFileURL()
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:49:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 47 |
 48 |     /// Value of extended attribute.
 49 |     public func extendedAttributeValue<T>(forName name: String) throws -> T {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 50 |         try checkFileURL()
 51 |         let data = try extendedAttribute(forName: name)
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 58 |
 59 |     /// Set extended attribute.
 60 |     public func setExtendedAttribute(data: Data, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 61 |         try checkFileURL()
 62 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:71:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 69 |
 70 |     /// Set extended attribute.
 71 |     public func setExtendedAttribute<T>(value: T, forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 72 |         try checkFileURL()
 73 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:84:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 82 |
 83 |     /// Remove extended attribute.
 84 |     public func removeExtendedAttribute(forName name: String) throws {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 85 |         try checkFileURL()
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:93:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 91 |
 92 |     /// Get list of all extended attributes.
 93 |     public func listExtendedAttributes() throws -> [String] {
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:20:20: error: cannot find 'getxattr' in scope
 18 |
 19 |         return self.withUnsafeFileSystemRepresentation { fileSystemPath -> Bool in
 20 |             return getxattr(fileSystemPath, name, nil, 0, 0, 0) > 0
    |                    `- error: cannot find 'getxattr' in scope
 21 |         }
 22 |     }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:20:51: error: 'nil' requires a contextual type
 18 |
 19 |         return self.withUnsafeFileSystemRepresentation { fileSystemPath -> Bool in
 20 |             return getxattr(fileSystemPath, name, nil, 0, 0, 0) > 0
    |                                                   `- error: 'nil' requires a contextual type
 21 |         }
 22 |     }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:29:26: error: cannot find 'getxattr' in scope
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
 28 |             // Determine attribute size:
 29 |             let length = getxattr(fileSystemPath, name, nil, 0, 0, 0)
    |                          `- error: cannot find 'getxattr' in scope
 30 |             guard length >= 0 else { throw URL.posixError(errno) }
 31 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:30:59: error: cannot find 'errno' in scope
 28 |             // Determine attribute size:
 29 |             let length = getxattr(fileSystemPath, name, nil, 0, 0, 0)
 30 |             guard length >= 0 else { throw URL.posixError(errno) }
    |                                                           `- error: cannot find 'errno' in scope
 31 |
 32 |             // Create buffer with required size:
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:38:21: error: cannot find 'getxattr' in scope
 36 |             if length > 0 {
 37 |                 let result = data.withUnsafeMutableBytes {
 38 |                     getxattr(fileSystemPath, name, $0, length, 0, 0)
    |                     `- error: cannot find 'getxattr' in scope
 39 |                 }
 40 |                 guard result >= 0 else { throw URL.posixError(errno) }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:40:63: error: cannot find 'errno' in scope
 38 |                     getxattr(fileSystemPath, name, $0, length, 0, 0)
 39 |                 }
 40 |                 guard result >= 0 else { throw URL.posixError(errno) }
    |                                                               `- error: cannot find 'errno' in scope
 41 |             }
 42 |
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:29:57: error: 'nil' requires a contextual type
 27 |         let data = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> Data in
 28 |             // Determine attribute size:
 29 |             let length = getxattr(fileSystemPath, name, nil, 0, 0, 0)
    |                                                         `- error: 'nil' requires a contextual type
 30 |             guard length >= 0 else { throw URL.posixError(errno) }
 31 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:64:17: error: cannot find 'setxattr' in scope
 62 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
 63 |             let result = data.withUnsafeBytes {
 64 |                 setxattr(fileSystemPath, name, $0, data.count, 0, 0)
    |                 `- error: cannot find 'setxattr' in scope
 65 |             }
 66 |             guard result >= 0 else { throw URL.posixError(errno) }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:66:59: error: cannot find 'errno' in scope
 64 |                 setxattr(fileSystemPath, name, $0, data.count, 0, 0)
 65 |             }
 66 |             guard result >= 0 else { throw URL.posixError(errno) }
    |                                                           `- error: cannot find 'errno' in scope
 67 |         }
 68 |     }
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:87:26: error: cannot find 'removexattr' in scope
 85 |         try checkFileURL()
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
 87 |             let result = removexattr(fileSystemPath, name, 0)
    |                          `- error: cannot find 'removexattr' in scope
 88 |             guard result >= 0 else { throw URL.posixError(errno) }
 89 |         }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:88:59: error: cannot find 'errno' in scope
 86 |         try self.withUnsafeFileSystemRepresentation { fileSystemPath in
 87 |             let result = removexattr(fileSystemPath, name, 0)
 88 |             guard result >= 0 else { throw URL.posixError(errno) }
    |                                                           `- error: cannot find 'errno' in scope
 89 |         }
 90 |     }
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:96:26: error: cannot find 'listxattr' in scope
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
 96 |             let length = listxattr(fileSystemPath, nil, 0, 0)
    |                          `- error: cannot find 'listxattr' in scope
 97 |             guard length >= 0 else { throw URL.posixError(errno) }
 98 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:97:59: error: cannot find 'errno' in scope
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
 96 |             let length = listxattr(fileSystemPath, nil, 0, 0)
 97 |             guard length >= 0 else { throw URL.posixError(errno) }
    |                                                           `- error: cannot find 'errno' in scope
 98 |
 99 |             // Create buffer with required size:
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:104:17: error: cannot find 'listxattr' in scope
102 |             // Retrieve attribute list:
103 |             let result = data.withUnsafeMutableBytes {
104 |                 listxattr(fileSystemPath, $0, length, 0)
    |                 `- error: cannot find 'listxattr' in scope
105 |             }
106 |             guard result >= 0 else { throw URL.posixError(errno) }
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:106:59: error: cannot find 'errno' in scope
104 |                 listxattr(fileSystemPath, $0, length, 0)
105 |             }
106 |             guard result >= 0 else { throw URL.posixError(errno) }
    |                                                           `- error: cannot find 'errno' in scope
107 |
108 |             // Extract attribute names:
/root/.swiftpm/swift-sdks/swift-6.3-RELEASE_android.artifactbundle/swift-android/ndk-sysroot/usr/include/errno.h:58:9: note: macro 'errno' unavailable: structure not supported
56 |  * thread.
57 |  */
58 | #define errno (*__errno())
   |         `- note: macro 'errno' unavailable: structure not supported
59 |
60 | __END_DECLS
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:96:52: error: 'nil' requires a contextual type
 94 |         try checkFileURL()
 95 |         let list = try self.withUnsafeFileSystemRepresentation { fileSystemPath -> [String] in
 96 |             let length = listxattr(fileSystemPath, nil, 0, 0)
    |                                                    `- error: 'nil' requires a contextual type
 97 |             guard length >= 0 else { throw URL.posixError(errno) }
 98 |
/host/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes.swift:119:27: error: cannot find 'POSIXErrorCode' in scope
117 |     /// Helper function to create an NSError from a Unix errno.
118 |     private static func posixError(_ err: Int32) -> POSIXError {
119 |         return POSIXError(POSIXErrorCode(rawValue: err) ?? .EPERM)
    |                           `- error: cannot find 'POSIXErrorCode' in scope
120 |     }
121 |
BUILD FAILURE 6.3 android