Build Information
Successful build of Base58String, reference 0.1.0 (496ad0), with Swift 6.3 for Android on 21 Apr 2026 06:54:18 UTC.
Swift 6 data race errors: 0
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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cloutiertyler/base58string.git
Reference: 0.1.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/cloutiertyler/base58string
* tag 0.1.0 -> FETCH_HEAD
HEAD is now at 496ad09 Updated README with instructions.
Cloned https://github.com/cloutiertyler/base58string.git
Revision (git rev-parse @):
496ad09a11f2212643a7413570effc16b7c76506
SUCCESS checkout https://github.com/cloutiertyler/base58string.git at 0.1.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/cloutiertyler/base58string.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
Fetching https://github.com/attaswift/BigInt.git
[1/4878] Fetching bigint
Fetched https://github.com/attaswift/BigInt.git from cache (0.63s)
Computing version for https://github.com/attaswift/BigInt.git
Computed https://github.com/attaswift/BigInt.git at 3.1.0 (1.80s)
Fetching https://github.com/attaswift/SipHash
[1/440] Fetching siphash
Fetched https://github.com/attaswift/SipHash from cache (0.36s)
Computing version for https://github.com/attaswift/SipHash
Computed https://github.com/attaswift/SipHash at 1.2.2 (3.29s)
Creating working copy for https://github.com/attaswift/BigInt.git
Working copy of https://github.com/attaswift/BigInt.git resolved at 3.1.0
Creating working copy for https://github.com/attaswift/SipHash
Working copy of https://github.com/attaswift/SipHash resolved at 1.2.2
Building for debugging...
[0/7] Write sources
[3/7] Write swift-version--4F562202D5529B1.txt
[5/12] Compiling SipHash SipHashable.swift
[6/12] Compiling SipHash RandomUInt64.swift
[7/12] Compiling SipHash Primitive Types.swift
[8/12] Compiling SipHash SipHasher.swift
[9/12] Emitting module SipHash
[10/13] Wrapping AST for SipHash for debugging
[11/13] Write Objects.LinkFileList
[12/13] Linking libSipHash.so
[14/34] Emitting module BigInt
[15/36] Compiling BigInt Floating Point Conversion.swift
[16/36] Compiling BigInt GCD.swift
[17/36] Compiling BigInt Hashable.swift
[18/36] Compiling BigInt Addition.swift
[19/36] Compiling BigInt BigInt.swift
[20/36] Compiling BigInt BigUInt.swift
[21/36] Compiling BigInt Subtraction.swift
[22/36] Compiling BigInt Words and Bits.swift
[23/36] Compiling BigInt Integer Conversion.swift
[24/36] Compiling BigInt Multiplication.swift
[25/36] Compiling BigInt Prime Test.swift
[26/36] Compiling BigInt Strideable.swift
[27/36] Compiling BigInt String Conversion.swift
[28/36] Compiling BigInt Random.swift
[29/36] Compiling BigInt Shifts.swift
[30/36] Compiling BigInt Square Root.swift
[31/36] Compiling BigInt Data Conversion.swift
[32/36] Compiling BigInt Division.swift
[33/36] Compiling BigInt Exponentiation.swift
[34/36] Compiling BigInt Bitwise Ops.swift
[35/36] Compiling BigInt Codable.swift
[36/36] Compiling BigInt Comparable.swift
[38/39] Compiling Base58String Base58String.swift
/host/spi-builder-workspace/Sources/Base58String/Base58String.swift:11:5: warning: 'public' modifier is redundant for initializer declared in a public extension
9 | public extension String {
10 |
11 | public init(base58Encoding bytes: Data, alphabet: [UInt8] = Base58String.btcAlphabet) {
| `- warning: 'public' modifier is redundant for initializer declared in a public extension
12 | var x = BigUInt(bytes)
13 | let radix = BigUInt(alphabet.count)
/host/spi-builder-workspace/Sources/Base58String/Base58String.swift:35:5: warning: 'public' modifier is redundant for initializer declared in a public extension
33 | public extension Data {
34 |
35 | public init?(base58Decoding string: String, alphabet: [UInt8] = Base58String.btcAlphabet) {
| `- warning: 'public' modifier is redundant for initializer declared in a public extension
36 | var answer = BigUInt(0)
37 | var j = BigUInt(1)
[39/39] Emitting module Base58String
/host/spi-builder-workspace/Sources/Base58String/Base58String.swift:11:5: warning: 'public' modifier is redundant for initializer declared in a public extension
9 | public extension String {
10 |
11 | public init(base58Encoding bytes: Data, alphabet: [UInt8] = Base58String.btcAlphabet) {
| `- warning: 'public' modifier is redundant for initializer declared in a public extension
12 | var x = BigUInt(bytes)
13 | let radix = BigUInt(alphabet.count)
/host/spi-builder-workspace/Sources/Base58String/Base58String.swift:35:5: warning: 'public' modifier is redundant for initializer declared in a public extension
33 | public extension Data {
34 |
35 | public init?(base58Decoding string: String, alphabet: [UInt8] = Base58String.btcAlphabet) {
| `- warning: 'public' modifier is redundant for initializer declared in a public extension
36 | var answer = BigUInt(0)
37 | var j = BigUInt(1)
Build complete! (24.60s)
Build complete.
{
"dependencies" : [
{
"identity" : "bigint",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/attaswift/BigInt.git"
}
],
"manifest_display_name" : "Base58String",
"name" : "Base58String",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Base58String",
"targets" : [
"Base58String"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Base58StringTests",
"module_type" : "SwiftTarget",
"name" : "Base58StringTests",
"path" : "Tests/Base58StringTests",
"sources" : [
"Base58StringTests.swift"
],
"target_dependencies" : [
"Base58String"
],
"type" : "test"
},
{
"c99name" : "Base58String",
"module_type" : "SwiftTarget",
"name" : "Base58String",
"path" : "Sources/Base58String",
"product_dependencies" : [
"BigInt"
],
"product_memberships" : [
"Base58String"
],
"sources" : [
"Base58String.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
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
Done.