This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build BinaryEncoding with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" 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.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/my-mail-ru/swift-binaryencoding.git
Reference: master
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/my-mail-ru/swift-binaryencoding
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 8489cb7 Swift 4.0
Cloned https://github.com/my-mail-ru/swift-binaryencoding.git
Revision (git rev-parse @):
8489cb745861e869f3fe0f852274105122be025c
SUCCESS checkout https://github.com/my-mail-ru/swift-binaryencoding.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/my-mail-ru/swift-binaryencoding.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" 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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/6] Emitting module BinaryEncoding
[4/6] Compiling BinaryEncoding Common.swift
[5/6] Compiling BinaryEncoding Data.swift
/host/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:34:55: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
 32 | 	public init(copyFrom: UnsafeRawPointer, count: Int) {
 33 | 		self.init(minimumCapacity: count)
 34 | 		withUnsafeMutableBufferRawPointer { $0.baseAddress!.copyBytes(from: copyFrom, count: count) }
    |                                                       |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |                                                       `- note: use 'copyMemory(from:byteCount:)' instead
 35 | 		self.count = count
 36 | 	}
/host/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:43:21: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
 41 | 		cont.withUnsafeBufferPointer { from in
 42 | 			withUnsafeMutableBufferRawPointer { to in
 43 | 				to.baseAddress!.copyBytes(from: UnsafeRawPointer(from.baseAddress!), count: cont.count)
    |                     |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |                     `- note: use 'copyMemory(from:byteCount:)' instead
 44 | 			}
 45 | 		}
/host/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:75:32: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
 73 | 		newBuffer.withUnsafeMutablePointerToElements { n in
 74 | 			buffer.withUnsafeMutablePointerToElements { o in
 75 | 				UnsafeMutableRawPointer(n).copyBytes(from: UnsafeRawPointer(o), count: count)
    |                                |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |                                `- note: use 'copyMemory(from:byteCount:)' instead
 76 | 			}
 77 | 		}
[6/6] Compiling BinaryEncoding UnsafeRawBufferPointer.swift
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:72:30: error: type 'String' has no member '_fromCodeUnitSequence'
 70 | 			defer { start += withSize }
 71 | 			let utf8buf = UnsafeBufferPointer(start: start.assumingMemoryBound(to: UTF8.CodeUnit.self), count: withSize)
 72 | 			guard let string = String._fromCodeUnitSequence(UTF8.self, input: utf8buf)
    |                              `- error: type 'String' has no member '_fromCodeUnitSequence'
 73 | 				else { throw BinaryEncodingError.stringIsNotUTF8 }
 74 | 			return string
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:141:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
139 | 				let size = e - p
140 | 				guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
141 | 				start.copyBytes(from: p, count: size)
    |           |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |           `- note: use 'copyMemory(from:byteCount:)' instead
142 | 				start += size
143 | 			}
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:148:10: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
146 | 		public mutating func write(_ value: UnsafeRawBufferPointer) throws {
147 | 			guard start + value.count <= end else { throw BinaryEncodingError.bufferIsTooShort }
148 | 			start.copyBytes(from: value.baseAddress!, count: value.count)
    |          |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |          `- note: use 'copyMemory(from:byteCount:)' instead
149 | 			start += value.count
150 | 		}
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:193:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
191 | 				let size = $0.count * MemoryLayout<C.Iterator.Element>.size
192 | 				guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
193 | 				start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
    |           |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |           `- note: use 'copyMemory(from:byteCount:)' instead
194 | 				start += size
195 | 			}
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:205:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
203 | 				start.assumingMemoryBound(to: S.self).pointee = numericCast(size)
204 | 				start += MemoryLayout<S>.size
205 | 				start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
    |           |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |           `- note: use 'copyMemory(from:byteCount:)' instead
206 | 				start += size
207 | 			}
/host/spi-builder-workspace/Sources/BinaryEncoding/UnsafeRawBufferPointer.swift:216:11: warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
214 | 				try write(UInt(size), as: VarUInt.self)
215 | 				guard start + size <= end else { throw BinaryEncodingError.bufferIsTooShort }
216 | 				start.copyBytes(from: UnsafeRawPointer($0.baseAddress!), count: size)
    |           |- warning: 'copyBytes(from:count:)' is deprecated: renamed to 'copyMemory(from:byteCount:)'
    |           `- note: use 'copyMemory(from:byteCount:)' instead
217 | 				start += size
218 | 			}
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.