Build Information
Failed to build ExtendedAttributes, reference 1.0.0 (075e54
), with Swift 6.0 for Linux on 31 Oct 2024 13:20:07 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.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: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/amosavian/ExtendedAttributes.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.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: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: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: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: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: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: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 |
BUILD FAILURE 6.0 linux