The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BinaryEncoding, reference master (8489cb), with Swift 6.1 for Wasm on 27 May 2025 15:12:36 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
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:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/my-mail-ru/swift-binaryencoding.git
https://github.com/my-mail-ru/swift-binaryencoding.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BinaryEncoding",
  "name" : "BinaryEncoding",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "BinaryEncoding",
      "targets" : [
        "BinaryEncoding"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BinaryEncodingTests",
      "module_type" : "SwiftTarget",
      "name" : "BinaryEncodingTests",
      "path" : "Tests/BinaryEncodingTests",
      "sources" : [
        "Data.swift"
      ],
      "target_dependencies" : [
        "BinaryEncoding"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BinaryEncoding",
      "module_type" : "SwiftTarget",
      "name" : "BinaryEncoding",
      "path" : "Sources/BinaryEncoding",
      "product_memberships" : [
        "BinaryEncoding"
      ],
      "sources" : [
        "Common.swift",
        "Data.swift",
        "UnsafeRawBufferPointer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/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 | 			}
[4/6] Emitting module BinaryEncoding
[5/6] Compiling BinaryEncoding Common.swift
[6/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 | 		}
/host/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:280:12: error: cannot find 'memcmp' in scope
278 | 			return rhs.withUnsafeBytes { rb in
279 | 				if lb.baseAddress == rb.baseAddress { return true }
280 | 				return memcmp(lb.baseAddress!, rb.baseAddress!, lb.count) == 0
    |            `- error: cannot find 'memcmp' in scope
281 | 			}
282 | 		}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/5] 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 | 			}
[3/5] Compiling BinaryEncoding Common.swift
[4/5] Emitting module BinaryEncoding
[5/5] 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 | 		}
/host/spi-builder-workspace/Sources/BinaryEncoding/Data.swift:280:12: error: cannot find 'memcmp' in scope
278 | 			return rhs.withUnsafeBytes { rb in
279 | 				if lb.baseAddress == rb.baseAddress { return true }
280 | 				return memcmp(lb.baseAddress!, rb.baseAddress!, lb.count) == 0
    |            `- error: cannot find 'memcmp' in scope
281 | 			}
282 | 		}
BUILD FAILURE 6.1 wasm